Redis

show all keys

keys *

get content of zset

zrange "accecpt_queue:topic1" -1 0

To get the type of a key

> type <key>

and depending on the response perform:

    for "string": get <key>
    for "hash": hgetall <key>
    for "list": lrange <key> 0 -1
    for "set": smembers <key>
    for "zset": zrange <key> 0 -1 withscores