aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/cache/mem_cache_store.rb
diff options
context:
space:
mode:
authorTobias Lütke <tobi@jadedpixel.com>2008-04-29 15:12:47 -0400
committerTobias Lütke <tobi@jadedpixel.com>2008-04-29 15:12:47 -0400
commitfef82759ff97692470496905951882a0aab49d5b (patch)
tree7acd6eb8ac07f96523ac3d99024e6a2099059d9b /activesupport/lib/active_support/cache/mem_cache_store.rb
parent9f07b1edcd2955dc7af166c422309da55372a92c (diff)
downloadrails-fef82759ff97692470496905951882a0aab49d5b.tar.gz
rails-fef82759ff97692470496905951882a0aab49d5b.tar.bz2
rails-fef82759ff97692470496905951882a0aab49d5b.zip
Implement increment/decrement on cache storage engines, using read/write by default and using atomic command on memcache
Diffstat (limited to 'activesupport/lib/active_support/cache/mem_cache_store.rb')
-rw-r--r--activesupport/lib/active_support/cache/mem_cache_store.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/cache/mem_cache_store.rb b/activesupport/lib/active_support/cache/mem_cache_store.rb
index ad220a9c2c..15e2df13b3 100644
--- a/activesupport/lib/active_support/cache/mem_cache_store.rb
+++ b/activesupport/lib/active_support/cache/mem_cache_store.rb
@@ -48,8 +48,26 @@ module ActiveSupport
rescue MemCache::MemCacheError => e
logger.error("MemCacheError (#{e}): #{e.message}")
false
+ end
+
+ def increment(key, amount = 1)
+ log("incrementing", key, amount)
+
+ response = @data.incr(key, amount)
+ response == Response::NOT_FOUND ? nil : response
+ rescue MemCache::MemCacheError
+ nil
end
+ def decrement(key, amount = 1)
+ log("decrement", key, amount)
+
+ response = data.decr(key, amount)
+ response == Response::NOT_FOUND ? nil : response
+ rescue MemCache::MemCacheError
+ nil
+ end
+
def delete_matched(matcher, options = nil)
super
raise "Not supported by Memcache"