method

increment_or_decrement

rails latest stable - Class: ActiveSupport::Cache::Strategy::LocalCache

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v4.1.8) is shown here.

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