How to visualize data stored in redis?
This troubleshooting guide describes how to see data in redis, when working with it.
less than a minute
Problem
You are not able to or you want to visualize data stored in redis.
Solution
Open one of the redis-pods.
Execute
redis-cli
Introduce
AUTH yourredispassword
Use commands like
DBSIZE
to get the database size andKEYS *
to display all stored keys.
Last modified February 17, 2023: update (#208) (ea731fc)