Method: Redis#hkeys
- Defined in:
- lib/redis.rb
#hkeys(key) ⇒ Array<String>
Get all the fields in a hash.
1934 1935 1936 1937 1938 |
# File 'lib/redis.rb', line 1934 def hkeys(key) synchronize do |client| client.call([:hkeys, key]) end end |