Method: Sohm::Model#decr

Defined in:
lib/sohm.rb

#decr(att, count = 1) ⇒ Object

Decrement a counter atomically. Internally uses HINCRBY.



981
982
983
# File 'lib/sohm.rb', line 981

def decr(att, count = 1)
  incr(att, -count)
end