Note_Tech

All technological notes.


Project maintained by simonangel-fong Hosted on GitHub Pages — Theme by mattgraham

Neo4j - GraphDB

Back


GraphDB


Labeled Property Graph Model


Pros and Cons


Graph Database vs. RDBMS

Graph Database RDBMS
data is stored in graphs. data is stored in tables.
there are nodes there are rows
there are properties and their values. there are columns and data.
the connected nodes are defined by relationships constraints are used instead of that.
traversal is used instead of join. join is used instead of traversal.

GraphDB vs NoSQL Database