> Your approach is sensible if you have a lot of tooling / code around your > relational model.
I don't have. > Do you use JPA or some other ORM or just plain JDBC ? None. I'm using PHP for the front end and Java for services using Thrift for communication between the PHP and Java. > You might have a look at Spring Data Graph cross-store approach: > http://bit-ly/sdg-html#cross-store (and perhaps Spring Data Graph in general > http://springsource.org/spring-data/neo4j ) > > If you want to use the properties while traversing the graph it would > probably more sensible to move the data to the graph? How big is your dataset? > > You wrote "I'm _creating_ " so if you start out, I'd try to go with the graph > database. > > I think the APIs are clean and easy enough for your developers to get them, > and you now also got cypher as query language which should be understandable > for a developer. I will use Neo4J for the data that fits better in a graph and use PostgreSQL for "table-friendly" data because I'm really excited about Neo4J. > Does your data(base) also contain like large blobs and such? Those should > perhaps not be stored in the graph (it's not optimized for that kind of data). I'm actually starting this project now. I'll have posts and comments (not really large text fields). I don't think this kind of data should be modeled as a graph. I'm trying to make the code "cache friendly" using these abstractions used by Facebook: http://www.infoq.com/presentations/Evolution-of-Code-Design-at-Facebook I think this approach fits even better with NeoJ4 than any other ORM based solution. Thanks! Felipe _______________________________________________ Neo4j mailing list [email protected] https://lists.neo4j.org/mailman/listinfo/user

