avatar
avatar

Reputation: 12495

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

I would like to use Django with a NOSQL solution. Are there any production ready NOSQL solutions that work nicely with the latest Django 1.3 ?

Upvotes: 5

Views: 1113

Answers (4)

Eddy Wong
Eddy Wong

Reputation: 221

You need to explain better what you are trying to do with Django or how does your data look like.

We ended up using Django and developed our own custom http-based "service" into Mongo and Neo4j. We manipulated the json data ourselves.

Upvotes: 1

arie
arie

Reputation: 18982

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

This extension provides you a threadsafe access and management of documents and views in your django application with some useful tools specific to Django.

Upvotes: 2

vad
vad

Reputation: 1276

It's a bit weird to say "i want to use a NoSQL". Every NoSQL is different, it's not magic and it doesn't solve every problem.

Upvotes: 3

fceruti
fceruti

Reputation: 2445

You should try django non-rel. Currently it has support for appengine and mongodb. There are some work done for redis and cassandra too. This project is supposed to be merged with django 1.4 once it´s ready.

Personally I´ve successfully created a simple test app for appengine using it.

Upvotes: 3

Related Questions