Performance of graph databases

288 views Asked by At

Is there any size limitation in database in Neo4j and Arango db? I'm using python. Which one is more consistent?

1

There are 1 answers

1
David Thomas On BEST ANSWER

You'll find both are suitable for a concept project. The key difference you will notice though is that ArangoDB is a multi-model database, so it can store normal NoSQL document collections and key/values as well as normal graph data. Neo4j focuses just on the graph data. Typically any application that stores/reads graph data will need to also deal with flat document collections, and if you use Neo4j you'll need to implement another technology to do that, but with ArangoDB it's there for you. Both are consistent, size limitation is only hardware. Good luck with your concept.