每日一句 ( 20241222 )  

Rivers know this: there is no hurry. We shall get there some day.

河流知道這一點(diǎn):無需匆忙。我們終有一日會(huì)到達(dá)。———— A. A. Milne

redis命令筆記

查找某個(gè)key是否存在:Redis::hkeys(‘xxxx’); 命令中是 hkeys xxxx刪除hash中某個(gè)field:Redis::hdel(‘Key_Name’, ‘xxxx’); 命令中是hdel Key_Name xxxxx 查看列表的所有數(shù)據(jù):lrange key_name 0 -1查看列表長度:llen key_name把redis中的查詢結(jié)果導(dǎo)出到文件,比如列表數(shù)據(jù):./redis-cli -a 123456 lrange...