Flowdock
method

read_multi_entries

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: ActiveSupport::Cache::Strategy::LocalCache::LocalStore
read_multi_entries(keys, options) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# 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
Register or log in to add new notes.