Reputation: 92139
Is there any tool to explore the redis data?
I am using redis module with Python
I see a blog with showing stats and thought if there is some people already using
Thank you
Upvotes: 2
Views: 893
Reputation: 1725
You can use redis-cli it does the job, I am not sure what a data exploration tool for redis would looks like anyway, a big list with all the keys ?
Here is an example of how you can explore your data:
# list all the keys
keys *
# list all the keys starting with zz
keys zz*
# check the data type
type mykey
Upvotes: 1