aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsyhebel <syhebel@gmail.com>2013-05-23 12:46:11 -0700
committersyhebel <syhebel@gmail.com>2013-05-23 12:46:11 -0700
commit312ad9fbcf85319a1dec7b8061c6b105735d86b6 (patch)
treef14fd1a84970a906bd9cc7d8abc828f894a61e96
parent14f70dfae144f917f099266082cc7a7c9dd065e4 (diff)
parent21586d364bd760b98173254f509fc6ab3b2e3f44 (diff)
downloadrails-312ad9fbcf85319a1dec7b8061c6b105735d86b6.tar.gz
rails-312ad9fbcf85319a1dec7b8061c6b105735d86b6.tar.bz2
rails-312ad9fbcf85319a1dec7b8061c6b105735d86b6.zip
Merge pull request #138 from lifo/cache
correction on cache.fetch race_condition_ttl
-rw-r--r--activesupport/lib/active_support/cache.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/cache.rb b/activesupport/lib/active_support/cache.rb
index b1ab5570a8..c539048a85 100644
--- a/activesupport/lib/active_support/cache.rb
+++ b/activesupport/lib/active_support/cache.rb
@@ -228,7 +228,7 @@ module ActiveSupport
#
# Setting <tt>:race_condition_ttl</tt> is very useful in situations where
# a cache entry is used very frequently and is under heavy load. If a
- # cache expires and due to heavy load seven different processes will try
+ # cache expires and due to heavy load several different processes will try
# to read data natively and then they all will try to write to cache. To
# avoid that case the first process to find an expired cache entry will
# bump the cache expiration time by the value set in <tt>:race_condition_ttl</tt>.