aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides
diff options
context:
space:
mode:
authorPrem Sichanugrist <s@sikachu.com>2011-11-11 13:34:55 -0500
committerPrem Sichanugrist <s@sikachu.com>2011-11-11 13:34:55 -0500
commit84908fa38264ea6de55fb7a858b4af7b64bb6efa (patch)
tree0ca5be939c5c29e493203b370231d4a6ae4fcd73 /railties/guides
parent9fd0cd3a12f969ca0c5c7ce6163e9e451637506d (diff)
downloadrails-84908fa38264ea6de55fb7a858b4af7b64bb6efa.tar.gz
rails-84908fa38264ea6de55fb7a858b4af7b64bb6efa.tar.bz2
rails-84908fa38264ea6de55fb7a858b4af7b64bb6efa.zip
For what it's worth; Update `memcache-client` gem name
Diffstat (limited to 'railties/guides')
-rw-r--r--railties/guides/source/caching_with_rails.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/caching_with_rails.textile b/railties/guides/source/caching_with_rails.textile
index 4273d0dd64..5bf2284230 100644
--- a/railties/guides/source/caching_with_rails.textile
+++ b/railties/guides/source/caching_with_rails.textile
@@ -293,7 +293,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 +memcached-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 +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.
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.