class Redis

def hkeys(key)

Get all the fields in a hash.
def hkeys(key)
  synchronize do
    @client.call(:hkeys, key)
  end
end