Changes between Version 5 and Version 6 of NoSqlSupport


Ignore:
Timestamp:
Dec 31, 2010, 5:59:24 AM (13 years ago)
Author:
Jannis Leidel
Comment:

added note about this being non-official

Legend:

Unmodified
Added
Removed
Modified
  • NoSqlSupport

    v5 v6  
    11This wiki page documents the requirements for supporting NoSQL (or non-relational) databases with Django.
     2
     3{{{
     4#!html
     5<div style="font-weight: bold; border: 2pt solid; text-align: center; background: rgb(255, 204, 187); border: 1px dotted rgb(221, 0, 0); color: rgb(85, 0, 0); padding: 10px 0.5em;">
     6This is not part of the official Django development efforts.
     7</div>
     8}}}
    29
    310The [http://www.allbuttonspressed.com/projects/django-nonrel Django-nonrel] branch of Django already provide support for NoSQL and it requires only minimal changes to Django's ORM. However, for the more interesting features like `select_related()` Django's ORM needs to be refactored and simplified in several areas. Many of the sections in this page are described from the point of view of Django-nonrel since a lot of experience required for official NoSQL support has been integrated in the Django-nonrel project.
Back to Top