Is it possible to create/delete different databases in the graph database Neo4j http://neo4j.org/ like in MySQL? Or, at least, how to delete all nodes and relationships of an existing graph to get a clean set-up for tests, e.g. using shell commands similar to rmrel * or rm *?
|
feedback
|
|
you can just remove the entire graph directory with rm -rf, Neo4j is not storing anything outside that. Also, you can of courser iterate through all nodes and delete their relationship and the nodes themselves, but that might be to costly just for testing ... | |||||||
feedback
|
|
For anyone else who needs a clean graph to run a test suite - https://github.com/jexp/neo4j-clean-remote-db-addon is a great extension to allow clearing the db through a REST call. Obviously, though, don't use it in production! | |||
|
feedback
|