summaryrefslogtreecommitdiff
path: root/docs/narr/sessions.rst
diff options
context:
space:
mode:
authorBen Bangert <ben@groovie.org>2010-10-29 11:14:41 -0700
committerBen Bangert <ben@groovie.org>2010-10-29 11:14:41 -0700
commit17e70c8db9140c0b4062f46ef5eb4527d678b793 (patch)
tree38b6b8de2a57db4debec477bc4fda27db82c4c5a /docs/narr/sessions.rst
parentd39e99e1f6f06a02a275a8a30f154e0f292d7dff (diff)
parent5038994ea9e053b16fca74ea8fa022871e630883 (diff)
downloadpyramid-17e70c8db9140c0b4062f46ef5eb4527d678b793.tar.gz
pyramid-17e70c8db9140c0b4062f46ef5eb4527d678b793.tar.bz2
pyramid-17e70c8db9140c0b4062f46ef5eb4527d678b793.zip
Merge branch 'master' of github.com:Pylons/pyramid
Diffstat (limited to 'docs/narr/sessions.rst')
-rw-r--r--docs/narr/sessions.rst22
1 files changed, 15 insertions, 7 deletions
diff --git a/docs/narr/sessions.rst b/docs/narr/sessions.rst
index e460e2d74..df164e684 100644
--- a/docs/narr/sessions.rst
+++ b/docs/narr/sessions.rst
@@ -88,9 +88,6 @@ two extra methods.
Extra attributes:
-``modified``
- An integer timestamp indicating the last time the session was modified.
-
``created``
An integer timestamp indicating the time that this session was created.
@@ -130,13 +127,24 @@ Some gotchas:
When in doubt, call ``changed()`` after you've changed sessioning
data.
+.. index::
+ single: pyramid_beaker
+ single: Beaker
+
Using Alternate Session Factories
---------------------------------
-At the time of this writing, alternate session factories don't yet
-exist. It is our intent that we will soon provide at least one other
-session factory which will be easily installable: one that uses the
-`Beaker <http://beaker.groovie.org/>`_ library as a backend.
+At the time of this writing, exactly one alternate session factory
+implementation exists, 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
+`http://github.com/Pylons/pyramid_beaker
+<http://github.com/Pylons/pyramid_beaker>`_ for more information about
+``pyramid_beaker``.
+
+.. index::
+ single: session factory
Creating Your Own Session Factory
---------------------------------