diff --git a/docs/releases/1.11.txt b/docs/releases/1.11.txt index 1803a3ae62..ddcfaafa3a 100644 --- a/docs/releases/1.11.txt +++ b/docs/releases/1.11.txt @@ -640,6 +640,17 @@ you must render model states using the ``clear_delayed_apps_cache()`` method as described in :ref:`writing your own migration operation `. +Server-side cursors on PostgreSQL +--------------------------------- + +The change to make :meth:`.QuerySet.iterator()` use server-side cursors on +PostgreSQL prevents running Django with `pgBouncer` in transaction pooling +mode. To reallow that, use the :setting:`DISABLE_SERVER_SIDE_CURSORS +` setting (added in Django 1.11.1) in +:setting:`DATABASES`. + +See :ref:`transaction-pooling-server-side-cursors` for more discussion. + Miscellaneous -------------