aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/caching_with_rails.md
diff options
context:
space:
mode:
authormichaelminter <mothore@gmail.com>2013-09-11 12:38:27 -0500
committermichaelminter <mothore@gmail.com>2013-09-11 12:38:27 -0500
commit90f7f81f0eab5d1427484f123de8b097a1206365 (patch)
treeaa4dbd6da69e22fbf60356d16ec80a1c6ebce4aa /guides/source/caching_with_rails.md
parentdb2c4abca6fa5814fdcf052587ae26522fdeac8f (diff)
downloadrails-90f7f81f0eab5d1427484f123de8b097a1206365.tar.gz
rails-90f7f81f0eab5d1427484f123de8b097a1206365.tar.bz2
rails-90f7f81f0eab5d1427484f123de8b097a1206365.zip
remove sentence err
Diffstat (limited to 'guides/source/caching_with_rails.md')
-rw-r--r--guides/source/caching_with_rails.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/caching_with_rails.md b/guides/source/caching_with_rails.md
index 3cf6631c32..d3d25f4d4e 100644
--- a/guides/source/caching_with_rails.md
+++ b/guides/source/caching_with_rails.md
@@ -225,7 +225,7 @@ This is the default cache store implementation.
### ActiveSupport::Cache::MemCacheStore
-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.
+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 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.