summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2013-10-08 11:49:57 -0700
committerSteve Piercy <web@stevepiercy.com>2013-10-08 11:49:57 -0700
commitd7f8766ef2154c64b9fc040e5bf0a8249e5c366f (patch)
treec48d9464b75bd44eb786ff7eed24e7bb77216fd5
parenta2b15855bee4893524609a941954c823bfbcec0d (diff)
parent2004173e4f1614b8eb9cc3534ec3117c736ff009 (diff)
downloadpyramid-d7f8766ef2154c64b9fc040e5bf0a8249e5c366f.tar.gz
pyramid-d7f8766ef2154c64b9fc040e5bf0a8249e5c366f.tar.bz2
pyramid-d7f8766ef2154c64b9fc040e5bf0a8249e5c366f.zip
Merge pull request #1148 from kpinc/docs_nobeaker
Docs: introduction.rst: Beaker -> Redis.
-rw-r--r--docs/narr/introduction.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/narr/introduction.rst b/docs/narr/introduction.rst
index bb2d85e94..a9c5fdfbd 100644
--- a/docs/narr/introduction.rst
+++ b/docs/narr/introduction.rst
@@ -417,12 +417,12 @@ Sessions
Pyramid has built-in HTTP sessioning. This allows you to associate data with
otherwise anonymous users between requests. Lots of systems do this. But
-Pyramid also allows you to plug in your own sessioning system by creating
-some code that adheres to a documented interface. Currently there is a
-binding package for the third-party Beaker sessioning system that does exactly
-this. But if you have a specialized need (perhaps you want to store your
-session data in MongoDB), you can. You can even switch between
-implementations without changing your application code.
+Pyramid also allows you to plug in your own sessioning system by creating some
+code that adheres to a documented interface. Currently there is a binding
+package for the third-party Redis sessioning system that does exactly this.
+But if you have a specialized need (perhaps you want to store your session data
+in MongoDB), you can. You can even switch between implementations without
+changing your application code.
Example: :ref:`sessions_chapter`.