method
read_multi_entries
v5.2.3 -
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 57
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