Flowdock
method

read_multi_entries

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: RedisCacheStore
read_multi_entries(names, _options) private

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/redis_cache_store.rb, line 335
        def read_multi_entries(names, _options)
          if mget_capable?
            read_multi_mget(*names)
          else
            super
          end
        end
Register or log in to add new notes.