Django and NoSQL, any ready-to-use library? [closed] Django and NoSQL, any ready-to-use library? [closed] django django

Django and NoSQL, any ready-to-use library? [closed]


Pre 1.0, django ORM underwent a major queryset re-factor. One of the reasons for this was "This re-factor enables us to support non relational backends".

The official support I think is definitely on the cards; but I think there were more pressing matters for 1.1 and 1.2(now in beta).

However, there are of course several independent efforts to use non relational databases with django, including, but not limited to the following:


Neo4j- the Java graph database (on the other end of the NoSQL spectrum)- also has initial support.

EDIT:

I've spent quite a while fleshing this support out and moving to a remote protocol. You can see the results on GitHub.


Until there is official Django support of a MongoDB back-end, for auto-admin, etc. (wouldn't that be so great). I would take a look at mongokit, which is a thin wrapper over pymongo. There's a few alternatives, but mongokit has comprehensive documentation and is under active development.