method

read_multi_entries

read_multi_entries(names, **options)
private

No documentation available.

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