instance method
read_multi
Ruby on Rails 2.3.18
Since v2.3.18 Last seen in v2.3.18Signature
read_multi(*names)
No documentation comment.
Parameters
-
namesrest
Source
# File activesupport/lib/active_support/cache/memory_store.rb, line 22
def read_multi(*names)
results = {}
names.each { |n| results[n] = read(n) }
results
end
Defined in activesupport/lib/active_support/cache/memory_store.rb line 22
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Cache::MemoryStore