1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

fix a document for race_condition_ttl. ActiveSupport::Cache::MemoryCache isn't exist

This commit is contained in:
kennyj 2011-10-30 01:55:09 +09:00
parent e886f97669
commit 7b65d12db5

View file

@ -232,7 +232,7 @@ module ActiveSupport
# <tt>:race_condition_ttl</tt> does not play any role.
#
# # Set all values to expire after one minute.
# cache = ActiveSupport::Cache::MemoryCache.new(:expires_in => 1.minute)
# cache = ActiveSupport::Cache::MemoryStore.new(:expires_in => 1.minute)
#
# cache.write("foo", "original value")
# val_1 = nil