mirror of https://github.com/rails/rails
Merge pull request #3463 from kennyj/fix_document_for_cache
fix a document for race_condition_ttl. ActiveSupport::Cache::MemoryCache isn't exist.
This commit is contained in:
commit
8ef1bd9b29
|
@ -230,7 +230,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
|
||||
|
|
Loading…
Reference in New Issue