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