N D Thokare
N D Thokare

Reputation: 1743

comparison: neo4j vs titan

I'm working on a project in which I used Neo4j for building Social-network graph. But I found that Neo4j takes a lot of memory space. For about 35k nodes and 30k edges, it took more than 5GB of disk-space. I'm worried, if I want to create a graph with hundreds of millions of users and same range of edges, it'll take a lot of space which I'll not be able to manage for.

So while looking for alternative graphDB I found "titan". Before going ahead and try it, I would like to know, if anybody can give me comparison between these two databases (neo4j and titan) with respect to (1) memory usage, (2) speed of query response on vertices and edges properties, (3) availability, security and any other additional important parameter..

Thanks.

Upvotes: 3

Views: 1200

Answers (1)

tstorms
tstorms

Reputation: 5001

You can reduce the graph size by modifying the "neostore." properties as explained on the kernel configuration page. I'd suggest you play around and see what happens.

Upvotes: 2

Related Questions