summaryrefslogtreecommitdiff
path: root/docs/narr/sessions.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2013-10-02 15:35:24 -0400
committerChris McDonough <chrism@plope.com>2013-10-02 15:35:24 -0400
commit66be39bf656a2840931603bc959e38ff95e53164 (patch)
treefbf3d72d0fdb466735367fc37b7a02333d0b6f09 /docs/narr/sessions.rst
parent678f49d2e08b128785e32ed6fc9e12df4713ad7c (diff)
downloadpyramid-66be39bf656a2840931603bc959e38ff95e53164.tar.gz
pyramid-66be39bf656a2840931603bc959e38ff95e53164.tar.bz2
pyramid-66be39bf656a2840931603bc959e38ff95e53164.zip
- Removed mention of ``pyramid_beaker`` from docs. Beaker is no longer
maintained. Point people at ``pyramid_redis_sessions`` instead.
Diffstat (limited to 'docs/narr/sessions.rst')
-rw-r--r--docs/narr/sessions.rst15
1 files changed, 2 insertions, 13 deletions
diff --git a/docs/narr/sessions.rst b/docs/narr/sessions.rst
index 358977089..f8279b0a5 100644
--- a/docs/narr/sessions.rst
+++ b/docs/narr/sessions.rst
@@ -146,8 +146,6 @@ Some gotchas:
you've changed sessioning data.
.. index::
- single: pyramid_beaker
- single: Beaker
single: pyramid_redis_sessions
single: session factory (alternates)
@@ -156,20 +154,11 @@ Some gotchas:
Using Alternate Session Factories
---------------------------------
-At the time of this writing, exactly two alternate session factories
-exist.
-
-The first is named ``pyramid_redis_sessions``. It can be downloaded from PyPI.
+At the time of this writing, exactly one project-endorsed alternate session
+factory exists named``pyramid_redis_sessions``. It can be downloaded from PyPI.
It uses Redis as a backend. It is the recommended persistent session solution
at the time of this writing.
-The second is named ``pyramid_beaker``. This is a session factory that uses the
-`Beaker <http://beaker.groovie.org/>`_ library as a backend. Beaker has
-support for file-based sessions, database based sessions, and encrypted
-cookie-based sessions. See `the pyramid_beaker documentation
-<http://docs.pylonsproject.org/projects/pyramid_beaker/en/latest/>`_ for more
-information about ``pyramid_beaker``.
-
.. index::
single: session factory (custom)