2016-11-27 35 views

回答

2

使用bash,我建議:

redis-cli srem myset "abc"$'\x06'"def" 

爲了檢查是否存在:

echo "abc"$'\x06'"def" | hexdump -C 

輸出:

 
00000000 61 62 63 06 64 65 66 0a       |abc.def.| 
00000008 
相關問題