Changes between Version 7 and Version 8 of NoSqlSupport


Ignore:
Timestamp:
Apr 26, 2011, 12:58:47 PM (13 years ago)
Author:
Waldemar Kornewald
Comment:

added Redis backend

Legend:

Unmodified
Added
Removed
Modified
  • NoSqlSupport

    v7 v8  
    1616 * !ElasticSearch: [https://github.com/aparo/django-elasticsearch django-elasticsearch]
    1717 * Cassandra: [https://github.com/vaterlaus/django_cassandra_backend django_cassandra_backend]
     18 * Redis: [https://github.com/MirkoRossini/django-redis-engine django-redis-engine]
    1819
    1920Also take a look at the [http://djangopackages.com/grids/g/nosql/ feature comparison matrix] for an overview of what is supported and what is missing. Database-specific features are sometimes provided by an automatically added manager. For example, MongoDB adds a manager which adds map-reduce and other MongoDB-specific features.
     
    113114For optimization purposes it's very important to allow batch-saving and batch-deleting a list of model instances (which, in the case of batch-deletion, is not exactly the same as `QuerySet.delete()` which first has to fetch the entities from the DB in order to delete them).
    114115
    115 This is not implemented in Django-nonrel.
     116This is not implemented in Django-nonrel, but Vladimir Mihailenco has implemented a patch which can be easily reused at least by NoSQL backends.
    116117
    117118= Multi-table inheritance =
     
    135136
    136137This is already implemented in Django-nonrel.
     138
    137139
    138140= delete() =
Back to Top