﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
35249	DISABLE_SERVER_SIDE_CURSORS is not documented as a connection setting	Johannes Maron	nobody	"`DISABLE_SERVER_SIDE_CURSORS` is documented as a Django setting when it is in fact a connection setting.

See also:

https://docs.djangoproject.com/en/5.0/ref/settings/#disable-server-side-cursors
https://github.com/django/django/blob/6e1ece7ed522c904a674966fa985159b7bbf1545/django/db/models/query.py#L540-L542

The correct usage is:


{{{
# settings.py

DATABASES = {
    ""default"": {
        # …
        ""DISABLE_SERVER_SIDE_CURSORS"": True,
    },
}
}}}
"	Bug	closed	Documentation	dev	Normal	invalid		Johannes Maron	Unreviewed	0	0	0	0	0	0
