diff options
author | Joshua Peek <josh@joshpeek.com> | 2008-07-16 18:46:04 -0500 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2008-07-16 18:46:04 -0500 |
commit | 7ae2105d57d3c08bebde44bd72093dd43c48d613 (patch) | |
tree | 8fa1e345c23740b60a8bd0c02a4a917acfa9aebf | |
parent | 73ade4fe100ae7f48c5f95dcdf7067f6a0cd51fa (diff) | |
download | rails-7ae2105d57d3c08bebde44bd72093dd43c48d613.tar.gz rails-7ae2105d57d3c08bebde44bd72093dd43c48d613.tar.bz2 rails-7ae2105d57d3c08bebde44bd72093dd43c48d613.zip |
MemCacheStore#decrement should use data instance variable not local variable [#521 state:resolved]
-rw-r--r-- | activesupport/lib/active_support/cache/mem_cache_store.rb | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/activesupport/lib/active_support/cache/mem_cache_store.rb b/activesupport/lib/active_support/cache/mem_cache_store.rb index b3769b812f..58958dccef 100644 --- a/activesupport/lib/active_support/cache/mem_cache_store.rb +++ b/activesupport/lib/active_support/cache/mem_cache_store.rb @@ -29,8 +29,8 @@ module ActiveSupport nil end - # Set key = value. Pass :unless_exist => true if you don't - # want to update the cache if the key is already set. + # Set key = value. Pass :unless_exist => true if you don't + # want to update the cache if the key is already set. def write(key, value, options = nil) super method = options && options[:unless_exist] ? :add : :set @@ -56,33 +56,33 @@ module ActiveSupport !read(key, options).nil? end - def increment(key, amount = 1) + def increment(key, amount = 1) log("incrementing", key, amount) - - response = @data.incr(key, amount) + + response = @data.incr(key, amount) response == Response::NOT_FOUND ? nil : response - rescue MemCache::MemCacheError + rescue MemCache::MemCacheError nil end def decrement(key, amount = 1) log("decrement", key, amount) - - response = data.decr(key, amount) + + response = @data.decr(key, amount) response == Response::NOT_FOUND ? nil : response - rescue MemCache::MemCacheError + rescue MemCache::MemCacheError nil - end - + end + def delete_matched(matcher, options = nil) super raise "Not supported by Memcache" - end - + end + def clear @data.flush_all - end - + end + def stats @data.stats end |