列出所有鍵

你可以通過執行 redis-cli 中的以下命令列出 Redis 資料庫中的所有金鑰:

KEYS *

KEYS 的引數是一個 glob 樣式的模式匹配表示式。支援模式的示例包括:

h?llo matches hello, hallo and hxllo
h*llo matches hllo and heeeello
h[ae]llo matches hello and hallo, but not hillo
h[^e]llo matches hallo, hbllo, ... but not hello
h[a-b]llo matches hallo and hbllo

使用 KEYS *命令可能會對效能產生負面影響,因此不建議針對生產例項。使用 SCAN 操作搜尋生產程式碼中的金鑰。