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 KEYS session.* > keys.txt,其中目前有大约 950,000 行/键。
$ redis-cli KEYS session.* > keys.txt
我想遍历所有这些并在它们上设置一个过期时间,并且宁愿避免为它编写一个 python 脚本。
我在这里没有看到任何问题:
redis-cli KEYS 'session.*' | awk '{printf "EXPIRE %s 60\n", $1}' | redis-cli > expire.log