Changes between Version 7 and Version 8 of NoSqlSupport
- Timestamp:
- Apr 26, 2011, 12:58:47 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
NoSqlSupport
v7 v8 16 16 * !ElasticSearch: [https://github.com/aparo/django-elasticsearch django-elasticsearch] 17 17 * Cassandra: [https://github.com/vaterlaus/django_cassandra_backend django_cassandra_backend] 18 * Redis: [https://github.com/MirkoRossini/django-redis-engine django-redis-engine] 18 19 19 20 Also 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. … … 113 114 For 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). 114 115 115 This is not implemented in Django-nonrel .116 This is not implemented in Django-nonrel, but Vladimir Mihailenco has implemented a patch which can be easily reused at least by NoSQL backends. 116 117 117 118 = Multi-table inheritance = … … 135 136 136 137 This is already implemented in Django-nonrel. 138 137 139 138 140 = delete() =