cvsguimaraes
cvsguimaraes

Reputation: 13240

Django supported alternative to noSQL

We need a reasonable insert and query speed over huge tables so I considered using some noSQL adapter with Django. Unfortunately:

So, as far I can see, PostgreSQL should be the way to go for this scenario, right?!

Please let me know any other detail that may be relevant to this question!

Bonus to anyone that can point out some useful database techniques like database sharding...

Upvotes: 0

Views: 316

Answers (1)

Works On Mine
Works On Mine

Reputation: 1121

Well, there is a fork of django project that uses MongoDb as the backend.You can read about it here . The Code on GitHub is here.You give some heads up, MongoDB is a NOSQL db that does support sharding and replication. So i think this might something that you are looking for.

Upvotes: 2

Related Questions