method
read_multi_entries
v7.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 332
def read_multi_entries(names, **options)
if mget_capable?
read_multi_mget(*names, **options)
else
super
end
end