Reputation: 13240
We need a reasonable insert and query speed over huge tables so I considered using some noSQL
adapter with Django
. Unfortunately:
Django
does not provide official support for noSQL
databases.Big Data
are relational to other Big Data
making the data duplication unacceptable.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
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