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 *?

link|improve this question

78% accept rate
feedback

2 Answers

up vote 9 down vote accepted

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 ...

link|improve this answer
4  
And if you iterate over all nodes, it could be a good idea to let the reference node stay. – nawroth Dec 22 '10 at 9:35
OK, thanks. I already realized this way of erasing all data, but i wasn't sure that this is the 'official' way of doing so... ;-) – rmv Dec 22 '10 at 15:35
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!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.