Reputation: 21
I am trying to upgrade from neo4j 2.2.x
to 3.x
, and have a couple of questions.
Were org.neo4j.tooling.GlobalGraphOperations
and org.neo4j.kernel.impl.core.Caches
removed from 3.x
?
Does dbms.directories.data
correspond to org.neo4j.server.database.location
?
Upvotes: 2
Views: 287
Reputation: 3054
At least about (1): Methods from GlobalGraphOperations
moved into GraphDatabaseService
. Caches
were removed in 2.3 due to removal of the object cache.
Upvotes: 2