1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #14269 from arthurnn/expanded_key_array

Cache key should be different when is Array.
This commit is contained in:
Guillermo Iguaran 2014-03-04 17:11:34 -05:00
commit 475c96589c
3 changed files with 14 additions and 4 deletions

View file

@ -1,3 +1,8 @@
* Cache key should add a trailing slash when the key is an array,
so `cache.fetch('foo')` and `cache.fetch(['foo'])` wont conflict.
*arthurnn*
* Change the signature of `fetch_multi` to return a hash rather than an
array. This makes it consistent with the output of `read_multi`.

View file

@ -511,7 +511,7 @@ module ActiveSupport
# called. If the key is a Hash, then keys will be sorted alphabetically.
def expanded_key(key) # :nodoc:
return key.cache_key.to_s if key.respond_to?(:cache_key)
trailing_slash = false
case key
when Array
if key.size > 1
@ -519,11 +519,12 @@ module ActiveSupport
else
key = key.first
end
trailing_slash = true
when Hash
key = key.sort_by { |k,_| k.to_s }.collect{|k,v| "#{k}=#{v}"}
end
key.to_param
key = key.to_param
trailing_slash ? "#{key}/" : key
end
# Prefix a key with the namespace. Namespace and key will be delimited

View file

@ -257,6 +257,10 @@ module CacheStoreBehavior
assert_nil @cache.fetch('foo') { 'baz' }
end
def test_fetch_with_array_and_without
assert_not_equal @cache.fetch('foo') { 'barz' }, @cache.fetch(['foo']) { 'barr' }
end
def test_should_read_and_write_hash
assert @cache.write('foo', {:a => "b"})
assert_equal({:a => "b"}, @cache.read('foo'))
@ -349,7 +353,7 @@ module CacheStoreBehavior
def test_array_as_cache_key
@cache.write([:fu, "foo"], "bar")
assert_equal "bar", @cache.read("fu/foo")
assert_equal "bar", @cache.read("fu/foo/")
end
def test_hash_as_cache_key