Patrick
Patrick

Reputation: 117

Neo4j configure performance properties in embedded Spring-Data application

How can I configure properties like neostore.nodestore.db.mapped_memory or nodeostore.relationshipstore.db.mapped_memory as described at http://docs.neo4j.org/chunked/stable/configuration-io-examples.html?

I am using the Spring Cineast-Demo-Project. I guess, I have to configure it in applicationContext.xml, where is also the neo4j store defined:

<neo4j:config storeDirectory="target/data/graph_1000_nodesEdges.db" />

Any hint, where I can configure these performance-parameter?

Upvotes: 0

Views: 87

Answers (1)

remigio
remigio

Reputation: 4211

Look at this link, example 2.1.8, it shows how to pass configuration parameters to the neo4j engine.

Upvotes: 1

Related Questions