1. 程式人生 > >shell中從redis讀取資料

shell中從redis讀取資料

這裡介紹在shell中,一種讀取redis值方式,程式碼如下:

#!/usr/bin/env bash
redis-cli -h 127.0.0.1 -p 6379 -a 123456 -n 1 keys  '*' |
while read key
do
key_val=`redis-cli -h 127.0.0.1 -p 6379 -a 123456 -n 1 get ${key}`
    echo ${key}  ${key_val}
done

其中:

-h 代表redis安裝地址

-p 代表redis埠

-a 代表redis訪問密碼

-n 代表redis資料庫的db index