method

read_multi_entries

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