aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/caching_with_rails.md
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-09-11 10:49:09 -0700
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-09-11 10:49:09 -0700
commit233c6d4c298434544e349a559906f5fa1883e070 (patch)
treeaa4dbd6da69e22fbf60356d16ec80a1c6ebce4aa /guides/source/caching_with_rails.md
parentdb2c4abca6fa5814fdcf052587ae26522fdeac8f (diff)
parent90f7f81f0eab5d1427484f123de8b097a1206365 (diff)
downloadrails-233c6d4c298434544e349a559906f5fa1883e070.tar.gz
rails-233c6d4c298434544e349a559906f5fa1883e070.tar.bz2
rails-233c6d4c298434544e349a559906f5fa1883e070.zip
Merge pull request #12199 from michaelminter/master
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.