Changes between Version 8 and Version 9 of NoSqlSupport


Ignore:
Timestamp:
Apr 26, 2011, 1:17:22 PM (14 years ago)
Author:
Waldemar Kornewald
Comment:

also discuss serializers

Legend:

Unmodified
Added
Removed
Modified
  • NoSqlSupport

    v8 v9  
    110110This is not implemented in Django-nonrel.
    111111
     112= Serializers =
     113
     114Due to lack of JOIN support on NoSQL DBs, Django fails to serialize any app's entities that have a `ManyToManyField` (e.g. `django.contrib.auth`). Instead of actually fetching the whole entities Django could fetch only the keys which are stored in the `ForeignKey` columns. That way, JOINs aren't required, anymore.
     115
     116This is already implemented in Django-nonrel.
     117
    112118= Batch operations =
    113119
Back to Top