Skip to content

Versioning with Neo4j

asaf edited this page Jan 16, 2013 · 9 revisions

Versioning with Neo4j

Neo4j is a very known graph database implementation and production ready,

Using Antiquity in conjunction with Neo4j is very simple, The only thing required is to initialize a Neo4j blueprints graph instance as the base graph,

Creating an embedded Neo4j graph

GraphDatabaseService graphDb = new GraphDatabaseFactory(). newEmbeddedDatabaseBuilder( "target/database/location" ). newGraphDatabase();

Clone this wiki locally