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