Method: Redis::Connection::Memory#hget

Defined in:
lib/redis/connection/memory.rb

#hget(key, field) ⇒ Object



265
266
267
268
# File 'lib/redis/connection/memory.rb', line 265

def hget(key, field)
  data_type_check(key, Hash)
  data[key] && data[key][field.to_s]
end