instance method
read_multi_entries
Ruby on Rails 7.0.10
Since v5.2.8.1 PrivateSignature
read_multi_entries(names, **options)
No documentation comment.
Parameters
-
namesreq -
optionskeyrest
Source
# File activesupport/lib/active_support/cache/redis_cache_store.rb, line 340
def read_multi_entries(names, **options)
if mget_capable?
read_multi_mget(*names, **options)
else
super
end
end
Defined in activesupport/lib/active_support/cache/redis_cache_store.rb line 340
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Cache::RedisCacheStore