Method: Redis::Commands::Hashes#hmset
- Defined in:
- lib/redis/commands/hashes.rb
#hmset(key, *attrs) ⇒ String
Set one or more hash values.
50 51 52 |
# File 'lib/redis/commands/hashes.rb', line 50 def hmset(key, *attrs) send_command([:hmset, key] + attrs) end |