aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2005-11-14 00:08:24 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2005-11-14 00:08:24 +0000
commitda2d4d6d57ed8f603b81d7446ce19e356c67f1af (patch)
tree9b8c34f22f93a467918f17ae3e830a4cae8ef5df /actionpack
parentffc46632189b75daf423452e3715d4c11a73310b (diff)
downloadrails-da2d4d6d57ed8f603b81d7446ce19e356c67f1af.tar.gz
rails-da2d4d6d57ed8f603b81d7446ce19e356c67f1af.tar.bz2
rails-da2d4d6d57ed8f603b81d7446ce19e356c67f1af.zip
Note that the ruby-memcache bindings are required to use the memcache store.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3013 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_controller/caching.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/lib/action_controller/caching.rb b/actionpack/lib/action_controller/caching.rb
index 7fe699c34e..5bedb17cd1 100644
--- a/actionpack/lib/action_controller/caching.rb
+++ b/actionpack/lib/action_controller/caching.rb
@@ -236,6 +236,7 @@ module ActionController #:nodoc:
# * DRbStore: Keeps the fragments in the memory of a separate, shared DRb process. This works for all environments and only keeps one cache
# around for all processes, but requires that you run and manage a separate DRb process.
# * MemCacheStore: Works like DRbStore, but uses Danga's MemCache instead.
+ # Requires the ruby-memcache library: gem install ruby-memcache.
#
# Configuration examples (MemoryStore is the default):
#