database - Using Neo4j Core Java API and terminal console together -
i writing application collects huge amount of data , store in neo4j. i'm using java code.
in order analyze data want use terminal neo4j server connect same database , use neo4j console query on using cypher.
this seems lot of hassle. have changed, neo4j-server.properties connect directory java code collecting data. , changed flag allow_store_upgrade=true in neo4j.properties.
however, still facing issues because of locks.
is there standard way achieve this?
you need have neo4j-shell-<version>.jar
on classpath , set remote_shell_enabled='true'
config option while initializing embedded instance.
i've written blog post on time ago: http://blog.armbruster-it.de/2014/01/using-remote-shell-combined-with-neo4j-embedded/
Comments
Post a Comment