Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想从 redis-cli shell 一次显示我在 Redis 中的所有键的 ttl。
我尝试过类似的事情
redis-cli keys * | xargs redis-cli TTL
但它不起作用,我不断收到错误:
(error) ERR wrong number of arguments for 'ttl' command
如果您使用 bash,请小心使用“*”。此外, xargs 将需要这样的替换字符串:
redis-cli KEYS '*' | xargs -I{} redis-cli TTL {}