redis-cli 範例隨記
可參考菜鳥教程
一樣假設 redis 不用帳密,請自行替換YOUR_REDIS_HOST 為你的 Redis URL
以及,你當然也可以先用 redis-cli -h YOUR_REDIS_HOST ,進入 Redis 本身的 command 以後,就不用一直打前面的 redis-cli -h YOUR_REDIS_HOST。
# 全清 redis-cli -h YOUR_REDIS_HOST flushall # 列出指定 key redis-cli -h YOUR_REDIS_HOST KEYS "*category*" # 刪除一個 key redis-cli -h YOUR_REDIS_HOST DEL ":1:new_episode_default" # 刪除指定 key (先 keys 撈出清單後,用 xargs 餵給 redis unlink ) redis-cli -h YOUR_REDIS_HOST KEYS *list* | xargs redis-cli -h YOUR_REDIS_HOST unlink
Leave a Reply