method
read_multi_entries
v6.0.0 -
Show latest stable
- Class:
ActiveSupport::Cache::RedisCacheStore
read_multi_entries(names, _options)private
No documentation available.
# File activesupport/lib/active_support/cache/redis_cache_store.rb, line 355
def read_multi_entries(names, _options)
if mget_capable?
read_multi_mget(*names)
else
super
end
end