Method: Redis#hkeys

Defined in:
lib/redis.rb

#hkeys(key) ⇒ Array<String>

Get all the fields in a hash.



1848
1849
1850
1851
1852
# File 'lib/redis.rb', line 1848

def hkeys(key)
  synchronize do |client|
    client.call [:hkeys, key]
  end
end