method

read_multi_entries

read_multi_entries(names, _options)
private

No documentation available.

# File activesupport/lib/active_support/cache/redis_cache_store.rb, line 355
        def read_multi_entries(names, _options)
          if mget_capable?
            read_multi_mget(*names)
          else
            super
          end
        end