class ActiveSupport::Cache::FileStore
def decrement(name, amount = 1, options = nil)
Decrements an already existing integer value that is stored in the cache.
def decrement(name, amount = 1, options = nil) modify_value(name, -amount, options) end
def decrement(name, amount = 1, options = nil) modify_value(name, -amount, options) end