aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/cache/behaviors/local_cache_behavior.rb
diff options
context:
space:
mode:
authorGabriel Sobrinho <gabriel.sobrinho@gmail.com>2018-02-06 12:16:42 -0200
committerJeremy Daer <jeremydaer@gmail.com>2018-02-23 12:53:01 -0800
commit1077ae96b34b5a1dfbf10ee0c40b1ceb1eb6b30b (patch)
tree49a011bf2eb2f2d302841249178887e317fe06b3 /activesupport/test/cache/behaviors/local_cache_behavior.rb
parent5ecbeda0e225e4961977b5c516088cf12d92319f (diff)
downloadrails-1077ae96b34b5a1dfbf10ee0c40b1ceb1eb6b30b.tar.gz
rails-1077ae96b34b5a1dfbf10ee0c40b1ceb1eb6b30b.tar.bz2
rails-1077ae96b34b5a1dfbf10ee0c40b1ceb1eb6b30b.zip
Caching: MemCache and Redis stores use local cache for multi-reads
Fixes #31909. Closes #31911.
Diffstat (limited to 'activesupport/test/cache/behaviors/local_cache_behavior.rb')
-rw-r--r--activesupport/test/cache/behaviors/local_cache_behavior.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/activesupport/test/cache/behaviors/local_cache_behavior.rb b/activesupport/test/cache/behaviors/local_cache_behavior.rb
index f7302df4c8..363f2d1084 100644
--- a/activesupport/test/cache/behaviors/local_cache_behavior.rb
+++ b/activesupport/test/cache/behaviors/local_cache_behavior.rb
@@ -119,6 +119,16 @@ module LocalCacheBehavior
end
end
+ def test_local_cache_of_fetch_multi
+ @cache.with_local_cache do
+ @cache.fetch_multi("foo", "bar") { |_key| true }
+ @peek.delete("foo")
+ @peek.delete("bar")
+ assert_equal true, @cache.read("foo")
+ assert_equal true, @cache.read("bar")
+ end
+ end
+
def test_middleware
app = lambda { |env|
result = @cache.write("foo", "bar")