2

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

daydreamer
  • 87,243
  • 191
  • 450
  • 722

1 Answers1

1

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

Schmurfy
  • 1,715
  • 9
  • 17