在開發過程中,會遇到要批次刪除某種規則的key,例如login_logID(ID為變數),現在需要刪除"login_log*"這一類的數據,但是redis本身只有批量查詢一類key值的命令keys,但是沒有批量刪除某一個類的命令。
先查詢,在刪除,使用xargs傳參(xargs可以將管道或標準輸入(stdin)資料轉換成命令列參數),先執行查詢語句,在將查詢出來的key值,當初del的參數去刪除。
redis-cli KEYS key* (查找条件) | xargs redis-cli del
=>[執行後回傳的結果影響數量]:(integer) 10[數量10個]
做個實驗,先創三個同類型的key值
127.0.0.1:6379> set test3 3127.0.0.1:6379> set test1 1
127.0.0.1:6379> set test3 3
OK
127.0.0.1:6379> set test2 2
OK
127.0.0.1:6379> set test3
127.0.0.1:6379> set test3 3
查詢keys3) " test1"2) "test2"
127.0.0.1:6379> keys test*
1) "test3"
退出redis,在本地執行刪除指令
[root@localhost redis]# redis-cli -a 密码 -n 0(数据库) keys "test*" |xargs redis-cli -a 密码 -n 0(数据库) del Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe. Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe. (integer) 3 (返回行数)
例如redis-cli -h 127.0.0.1(IP位址) -p 6379 (埠號) -a 密碼-n 1(資料在第幾個函式庫就寫幾) KEYS key* (查找條件) | xargs redis-cli ( -h (IP位址) -p 6379 (埠號) -a 密碼-n 1 ) del
補充知識:
redis中的刪除
例如:(integer) 1127.0.0.1:6379> del hello
127.0.0.1:6379> set hello world
OK
但是del只能刪除一個或多個,不能批次刪除,當需要刪除資料量過大時就不適用了
以上是redis批量刪除key值的問題怎麼解決的詳細內容。更多資訊請關注PHP中文網其他相關文章!