Pass options in ActiveSupport::Cache::CacheStore#read_multi through to the delete_entry call.

This commit is contained in:
Brian Durand 2011-08-01 12:05:29 -05:00
parent caacf85673
commit fec4c5ad76
2 changed files with 9 additions and 1 deletions

@ -347,7 +347,7 @@ def read_multi(*names)
entry = read_entry(key, options)
if entry
if entry.expired?
delete_entry(key)
delete_entry(key, options)
else
results[name] = entry.value
end

@ -199,6 +199,14 @@ def test_read_multi
@cache.write('fud', 'biz')
assert_equal({"foo" => "bar", "fu" => "baz"}, @cache.read_multi('foo', 'fu'))
end
def test_read_multi_with_expires
@cache.write('foo', 'bar', :expires_in => 0.001)
@cache.write('fu', 'baz')
@cache.write('fud', 'biz')
sleep(0.002)
assert_equal({"fu" => "baz"}, @cache.read_multi('foo', 'fu'))
end
def test_read_and_write_compressed_small_data
@cache.write('foo', 'bar', :compress => true)