aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2012-09-03 16:52:08 -0500
committerGuillermo Iguaran <guilleiguaran@gmail.com>2012-09-03 16:52:08 -0500
commitdb354204b7656b010630448248b112ce39c4cf41 (patch)
tree5e7669ea801588a4bd4850f0b8df14253e7608d0 /guides/source
parentcd59277110b3a4db81691111c6aa4734f9cad998 (diff)
downloadrails-db354204b7656b010630448248b112ce39c4cf41.tar.gz
rails-db354204b7656b010630448248b112ce39c4cf41.tar.bz2
rails-db354204b7656b010630448248b112ce39c4cf41.zip
Update caching guide: memcache-client was replaced with dalli
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/caching_with_rails.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/caching_with_rails.textile b/guides/source/caching_with_rails.textile
index 815b2ef9c2..f6d6c8b550 100644
--- a/guides/source/caching_with_rails.textile
+++ b/guides/source/caching_with_rails.textile
@@ -353,7 +353,7 @@ Note that the cache will grow until the disk is full unless you periodically cle
h4. ActiveSupport::Cache::MemCacheStore
-This cache store uses Danga's +memcached+ server to provide a centralized cache for your application. Rails uses the bundled +memcache-client+ gem by default. This is currently the most popular cache store for production websites. It can be used to provide a single, shared cache cluster with very a high performance and redundancy.
+This cache store uses Danga's +memcached+ server to provide a centralized cache for your application. Rails uses the bundled +dalli+ gem by default. This is currently the most popular cache store for production websites. It can be used to provide a single, shared cache cluster with very a high performance and redundancy.
When initializing the cache, you need to specify the addresses for all memcached servers in your cluster. If none is specified, it will assume memcached is running on the local host on the default port, but this is not an ideal set up for larger sites.