Method: Redis#hvals

Defined in:
lib/redis.rb

#hvals(key) ⇒ Object

Get all the values in a hash.



777
778
779
780
781
# File 'lib/redis.rb', line 777

def hvals(key)
  synchronize do
    @client.call [:hvals, key]
  end
end