summaryrefslogtreecommitdiff
path: root/docs/narr
diff options
context:
space:
mode:
authorKarl O. Pinc <kop@meme.com>2013-10-08 09:37:39 -0500
committerKarl O. Pinc <kop@meme.com>2013-10-08 09:37:39 -0500
commit2004173e4f1614b8eb9cc3534ec3117c736ff009 (patch)
tree26faece3bd05f48671d9503773fc5fe7f147e196 /docs/narr
parent4223668ee4c0d0ac0e981f3241d56ffa805ba6d1 (diff)
downloadpyramid-2004173e4f1614b8eb9cc3534ec3117c736ff009.tar.gz
pyramid-2004173e4f1614b8eb9cc3534ec3117c736ff009.tar.bz2
pyramid-2004173e4f1614b8eb9cc3534ec3117c736ff009.zip
Docs: introduction.rst: Beaker -> Redis.
Diffstat (limited to 'docs/narr')
-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 ece720a97..4e705b8b1 100644
--- a/docs/narr/introduction.rst
+++ b/docs/narr/introduction.rst
@@ -418,12 +418,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`.