Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

django built-in support for MongoDB

Tags:

django

nosql

I'm trying to find any information if official django is going to support any noSQL DBMS, especially MongoDB. I found a fork of django 1.3 the django-nonrel (a fork of official django) and some other not very reliable projects (failures occur often, according to comments I found on the web). Is django going to support noSQL officially at all?

like image 951
ducin Avatar asked Apr 21 '13 15:04

ducin


1 Answers

Perhaps, there are other ways to achieve your goals, besides going noSQL.

In short, if you just need dynamic fields, you have other options. I have an extensive writeup about them in another answer:

  • Entity–attribute–value model (Django-eav)
  • PostgreSQL hstore (Django-hstore)
  • Dynamic models based on migrations (Django-mutant)

Yes, that's not exactly what you've asked for, but that's all that we've currently got.

like image 181
Ivan Kharlamov Avatar answered Sep 24 '22 09:09

Ivan Kharlamov