Redis Scan Keys e Print Values ​​Shell

#From shell
redis-cli --raw keys "KeyPrefix*" | xargs redis-cli GET
# or
redis-cli --scan --pattern "KeyPrefix*" | xargs redis-cli GET
Bright Butterfly