Method: Redis::Connection::Memory#hkeys
- Defined in:
- lib/redis/connection/memory.rb
#hkeys(key) ⇒ Object
289 290 291 292 293 |
# File 'lib/redis/connection/memory.rb', line 289 def hkeys(key) data_type_check(key, Hash) return [] if data[key].nil? data[key].keys end |