published under license Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)copy! share!
posted in category Systems Software / Redis
posted at 28. Jan '18
Redis Notes
List All Items
KEYS '*'
Get Type of Key
to see the value of a key, types needs to be known and correct getter called, i.e. GET, MGET, HGET
type "bull:runner:45"
hash
Show a Hash Value of a Key
shows all properties on a hash
HGETALL "bull:runner:45"
1) "delay"
2) "0"
3) "finishedOn"
....
Add Comment