redis-cli --csv KEYS "*" > keys_list.csv
rdb --command json /path/to/dump.rdb > output.csv rdb to csv
CSV is not a substitute for a database. Avoid conversion if you need: redis-cli --csv KEYS "*" > keys_list
If you have access to the running Redis server but not the physical .rdb file on disk, you do not need to create an RDB file to get CSV data. You can use redis-cli directly. redis-cli --csv KEYS "*" >
rdb -c csv /path/to/dump.rdb > output.csv