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 シェルから、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 {}