Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ First steps
- :doc:`Installation <intro/install>`
- :doc:`Configuring a project <intro/configure>`
- :doc:`howto/contrib-apps`
- :doc:`topics/known-issues`

Getting help
============
Expand Down
1 change: 0 additions & 1 deletion docs/source/ref/models/querysets.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ Supported ``QuerySet`` methods
All of Django's :doc:`QuerySet methods <django:ref/models/querysets>` are
supported, except:

- :meth:`bulk_update() <django.db.models.query.QuerySet.bulk_update>`
- :meth:`extra() <django.db.models.query.QuerySet.extra>`
- :meth:`prefetch_related() <django.db.models.query.QuerySet.prefetch_related>`

Expand Down
5 changes: 2 additions & 3 deletions docs/source/topics/known-issues.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ Querying

- The following ``QuerySet`` methods aren't supported:

- :meth:`bulk_update() <django.db.models.query.QuerySet.bulk_update>`
- :meth:`extra() <django.db.models.query.QuerySet.extra>`
- :meth:`prefetch_related() <django.db.models.query.QuerySet.prefetch_related>`

Expand Down Expand Up @@ -98,8 +97,8 @@ Caching

:doc:`Database caching </topics/cache>` uses this library's
:djadmin:`createcachecollection` command rather Django's SQL-specific
:djadmin:`createcachetable`.
:djadmin:`createcachetable` command.

Secondly, you must use the :class:`django_mongodb_backend.cache.MongoDBCache`
backend rather than Django's built-in database cache backend,
``django.core.cache.backends.db.DatabaseCache``).
``django.core.cache.backends.db.DatabaseCache``.
Loading