Skip to content

ORM client for OrientDB / Cassandra / NoSQL repositories

License

Notifications You must be signed in to change notification settings

trajar/normandra

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

normandra

Simple client for NoSQL repositories using JPA annotations. Currently targeting support for Cassandra, OrientDB, and Neo4J.

Download library via current release https://github.com/trajar/normandra/releases/tag/v1.27.

builder = new GraphMetaBuilder()
            .withNodeClasses(nodes)
            .withEdgeClasses(edges);
database = OrientGraphDatabase.create(
            pathOrUrl, 
            new MemoryCache.Factory(MapFactory.withConcurrency()),
            DatabaseConstruction.CREATE, builder);
meta = builder.create();
graphManager = new GraphManagerFactory(database, meta);