method
read_multi_entries
v6.1.7.7 -
Show latest stable
- Class:
ActiveSupport::Cache::Strategy::LocalCache::LocalStore
read_multi_entries(keys, **options)public
No documentation available.
# File activesupport/lib/active_support/cache/strategy/local_cache.rb, line 56
def read_multi_entries(keys, **options)
values = {}
keys.each do |name|
entry = read_entry(name, **options)
values[name] = entry.value if entry
end
values
end