cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Using Neo4j on non-graph data

Assume that in my application I have some graph data as my domain objects as well as some non-graph data related to UI. One solution is to use the non-graph data in Neo4j as isolated nodes and use index lookups to query the data (Assume no joins are required). This can avoid using two separate databases. Is there any drawback to this solution? Any performance issues?

1 ACCEPTED SOLUTION

No performance issues
No drawbacks

Just make sure that those nodes are not deleted or modified by the other part of the application.
Use separate set of labels.

In 4.0+ you'll be able to use multiple databases.

View solution in original post

2 REPLIES 2

No performance issues
No drawbacks

Just make sure that those nodes are not deleted or modified by the other part of the application.
Use separate set of labels.

In 4.0+ you'll be able to use multiple databases.

Looking forward to that v4.0 release. Lots of good things coming from what I've read.