Class: ActiveSupport::Cache::MemcachedSnappyStore

Inherits:
Cache::MemCacheStore
  • Object
show all
Defined in:
lib/active_support/cache/memcached_snappy_store.rb

Defined Under Namespace

Classes: UnsupportedOperation

Instance Method Summary collapse

Instance Method Details

#decrement(*args) ⇒ Object



10
11
12
# File 'lib/active_support/cache/memcached_snappy_store.rb', line 10

def decrement(*args)
  raise UnsupportedOperation.new("decrement is not supported by: #{self.class.name}")
end

#increment(*args) ⇒ Object



6
7
8
# File 'lib/active_support/cache/memcached_snappy_store.rb', line 6

def increment(*args)
  raise UnsupportedOperation.new("increment is not supported by: #{self.class.name}")
end