Abdelouahab
Abdelouahab

Reputation: 7539

Using Neo4j and MongoDB together in a CPython framework

Well, here is my problem, I'll make an e-commerce project for my thesis, I'll make it using Django, and I wanna use NoSql solution, since I'll imagine that this e-commerce website will grow (...) the idea of that website is a social-e-commerce without money transactions, I'll use two solutions: MongoDB to store users information (since it's a schema-free) and Neo4j to make relations between users.

Ok, maybe someone will say: why not using Neo4j to handle everything since Neo4j is also a schema-free, but because it's Django, so I said that something that is a C-program will be better and faster for the web application than a 100% Java solution (when dealing with C-Django), I'll use CPython and not Jython, and I've installed JPype, so I imagine that calling Java from Python is something that will take time?

So my question is:

Upvotes: 0

Views: 775

Answers (1)

David Wolever
David Wolever

Reputation: 154454

It looks like the question has been answered in the comments, so I'm providing this answer to allow the question to show up as being answered.

Upvotes: 2

Related Questions