class ActiveSupport::Cache::RedisCacheStore

def read_multi_entries(names, **options)

def read_multi_entries(names, **options)
  if mget_capable?
    read_multi_mget(*names, **options)
  else
    super
  end
end