Doc fix [ci skip]

This commit is contained in:
Sushruth Sivaramakrishnan 2015-03-05 15:38:24 +05:30
parent 4946fd7852
commit ce46dfea42

@ -568,7 +568,7 @@ def handle_expired_entry(entry, key, options)
race_ttl = options[:race_condition_ttl].to_i
if race_ttl && (Time.now.to_f - entry.expires_at <= race_ttl)
# When an entry has :race_condition_ttl defined, put the stale entry back into the cache
# for a brief period while the entry is begin recalculated.
# for a brief period while the entry is being recalculated.
entry.expires_at = Time.now + race_ttl
write_entry(key, entry, :expires_in => race_ttl * 2)
else