Search code examples
redisredis-cli

How to search whole redis database for string?


I need to debug a session problem, so I have to search for a certain string in the whole redis database. Is this possible?


Solution

  • I was able to debug it by using redis-cli monitor | tee monitor_log.txt and then searching in the file.