Django + what is NOSQL most mature for use in production?

I would like to use Django with a NOSQL solution. Are there any ready-made NOSQL production solutions that work great with the latest versions of Django 1.3?

+4
source share
4 answers

You should try django non-rel . He currently supports appengine and mongodb. There are some works for redis and cassandra. This project is expected to be merged with django 1.4 when it is ready.

Personally, I have successfully created a simple test application for an application using it.

+3
source

It's a little strange to say "I want to use NoSQL." Each NoSQL is different, it is not magical and does not solve every problem.

+3
source

If you decide to go with CouchDB , you can take a look at Couchdbkit , which has a Django extension.

This extension provides you with streaming access and management of documents and opinions in your django application with some useful Django-specific tools.

+2
source

You need to explain what you are trying to do with Django or what your data looks like.

We ended up using Django and developed our own custom β€œservice” in Mongo and Neo4j. We manipulated json data ourselves.

+1
source

All Articles