Database Reference
In-Depth Information
Advanced settings
Let's discuss the advanced settings exposed by Neo4j, which should be considered for any
production deployment:
<$NEO4J_HOME>/conf/neo4j-server.properties - Neo4j server configuration file
Default
value
Parameter
Description
Client accept pattern for the web server. By default it
accepts connection only from local boxes. Define the
IP address of the box for accepting remote connec-
tions.
0.0.0.0
org.neo4j.server.webserver.address
This controls the concurrent request handled by the
web server.
org.neo4j.server.webserver.maxthreads 200
org.neo4j.server.transaction.timeout 60
Timeouts for orphaned transactions.
<$ NEO4J_HOME>/conf/neo4j.propoerties - low-level configurations for Neo4j database
This is the Boolean value for enabling READ mode
or WRITE mode. By default it is in WRITE mode.
Read_only
False
This defines the type of cache used to store the nodes
and relationships. The following are the types of
cache:
none : Do not use any cache.
soft : LRU cache using soft references.
Used when the application load isn't very
high.
weak : LRU cache using weak references.
Used when the application is under heavy
load with lots of reads and traversals.
strong : Will hold on to all data that gets
loaded and never release it. Use it when
your graph is small enough to fit in
memory.
Cache_type
soft
Search WWH ::




Custom Search