method
increment_or_decrement
rails latest stable - Class:
ActiveSupport::Cache::Strategy::LocalCache
increment_or_decrement(value, name, amount, options)private
No documentation available.
# File activesupport/lib/active_support/cache/strategy/local_cache.rb, line 124
def increment_or_decrement(value, name, amount, options)
if local_cache
local_cache.mute do
if value
local_cache.write(name, value, options)
else
local_cache.delete(name, options)
end
end
end
end