Method: Redis#hset
- Defined in:
- lib/redis.rb
#hset(key, field, value) ⇒ Object
Set the string value of a hash field.
728 729 730 731 732 |
# File 'lib/redis.rb', line 728 def hset(key, field, value) synchronize do _bool @client.call [:hset, key, field, value] end end |