Redis的在使用的過程當中有中文的內容都是以十六進制的形式存儲的,因此在使用redis-cli客戶端鏈接時若是是內容中有中文的部分都會以十六進制的形式顯示,所以查詢redis中的數據內容時就有點不太方便,其實在Unix系統下能夠把查到的十六進制內容用echo中的「-e「參數用來轉換所查詢到的十六進制內容,以下:redis
127.0.0.1:6379> get test1 "test\xe6\x8c\x81\xe4\xb9\x85\xe5\x8c\x96" 127.0.0.1:6379> quit [root@localhost ~]# echo -e "test\xe6\x8c\x81\xe4\xb9\x85\xe5\x8c\x96" test持久化
此外在使用redis-cli客戶端時還能夠使用redis-cli客戶端自己的「--raw」參數在鏈接redis時用來輸出原始內容:bash
[root@localhost ~]# redis-cli --raw 127.0.0.1:6379> get test1 test持久化