Method: Redis::Commands::Strings#incrby
- Defined in:
- lib/redis/commands/strings.rb
#incrby(key, increment) ⇒ Integer
Increment the integer value of a key by the given integer number.
52 53 54 |
# File 'lib/redis/commands/strings.rb', line 52 def incrby(key, increment) send_command([:incrby, key, Integer(increment)]) end |