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 和大量客户端(超过默认限制 10000)的问题。尽管该CLIENT LIST命令工作正常,但不能用它做很多事情。我想将它保存到一个文件中,以便运行一些指标(按 ip、时间等排序)。
CLIENT LIST
不幸的是,redis-cli 不可能,因为会CLIENT LIST > ~/clients.txt抛出语法错误。 有没有办法保存客户列表供以后使用?
CLIENT LIST > ~/clients.txt
从终端外壳尝试,
>>> redis-cli "CLIENT LIST" > ~/clients.txt