class Redis

def incr(key)

Returns:
  • (Fixnum) - value after incrementing it

Parameters:
  • key (String) --
def incr(key)
  synchronize do |client|
    client.call([:incr, key])
  end
end