I'new to NEO4J and working around Neo4J OGM, to my understanding this is the framework that is associated with Spring Data Neo4j. There's, however, Hibernate OGM, also supporting Neo4J. Is anyone aware of the differences between the two, or can point to a comparison article?
1
votes
1 Answers
0
votes
Hibernate Object/Grid Mapper (OGM) adds Java Persistence API (JPA) to NoSQL databases. I use OGM with MongoDB and it works very well on JBoss WildFly 12.0.0.Final.
This is the page I refer to a lot:
Hibernate OGM 5.3.1.Final: Reference Guide
See section 11. "11. Neo4j"
Neo4j is a robust (fully ACID) transactional property graph database. This kind of databases are suited for those type of problems that can be represented with a graph like social relationships or road maps for example.