aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorDavid Verhasselt <david@crowdway.com>2019-04-12 15:40:29 +0300
committerDavid Verhasselt <david@crowdway.com>2019-04-12 16:12:14 +0300
commit5e21667496ded39e575640dcebe21cacd2e04ef6 (patch)
treecd6ab1dc0789491def2ad3cc1900b1390e5f4c1d /activesupport/lib
parent3bd534287139549cee10e10364344d66139d9237 (diff)
downloadrails-5e21667496ded39e575640dcebe21cacd2e04ef6.tar.gz
rails-5e21667496ded39e575640dcebe21cacd2e04ef6.tar.bz2
rails-5e21667496ded39e575640dcebe21cacd2e04ef6.zip
Redis fetch without names returns {}
When trying to call mget in Redis without any parameters, a Redis error is thrown. To avoid this, we circumvent Redis entirely when there are no key names given.
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/cache/redis_cache_store.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/cache/redis_cache_store.rb b/activesupport/lib/active_support/cache/redis_cache_store.rb
index 9a55e49e27..87f9aa5346 100644
--- a/activesupport/lib/active_support/cache/redis_cache_store.rb
+++ b/activesupport/lib/active_support/cache/redis_cache_store.rb
@@ -361,6 +361,7 @@ module ActiveSupport
def read_multi_mget(*names)
options = names.extract_options!
options = merged_options(options)
+ return {} if names == []
keys = names.map { |name| normalize_key(name, options) }