Method: Redis::Distributed#incrby
- Defined in:
- lib/redis/distributed.rb
#incrby(key, increment) ⇒ Object
Increment the integer value of a key by the given integer number.
281 282 283 |
# File 'lib/redis/distributed.rb', line 281 def incrby(key, increment) node_for(key).incrby(key, increment) end |