Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[1.1.X] Fixed #11933 -- Added versionchanged marker for the cache_db …
…session backend. Thanks to gabrielhurley for the report and patch.

Backport of r12569 from trunk.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12571 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
freakboy3742 committed Feb 24, 2010
1 parent 18c800f commit c1edfcd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docs/ref/settings.txt
Expand Up @@ -873,13 +873,17 @@ SESSION_ENGINE

.. versionadded:: 1.0

.. versionchanged:: 1.1
The ``cache_db`` backend was added

Default: ``django.contrib.sessions.backends.db``

Controls where Django stores session data. Valid values are:

* ``'django.contrib.sessions.backends.db'``
* ``'django.contrib.sessions.backends.file'``
* ``'django.contrib.sessions.backends.cache'``
* ``'django.contrib.sessions.backends.cache_db'``

See :ref:`topics-http-sessions`.

Expand Down
4 changes: 4 additions & 0 deletions docs/topics/http/sessions.txt
Expand Up @@ -410,13 +410,17 @@ SESSION_ENGINE

.. versionadded:: 1.0

.. versionchanged:: 1.1
The ``cache_db`` backend was added

Default: ``django.contrib.sessions.backends.db``

Controls where Django stores session data. Valid values are:

* ``'django.contrib.sessions.backends.db'``
* ``'django.contrib.sessions.backends.file'``
* ``'django.contrib.sessions.backends.cache'``
* ``'django.contrib.sessions.backends.cache_db'``

See `configuring the session engine`_ for more details.

Expand Down

0 comments on commit c1edfcd

Please sign in to comment.