在redis模式上使用psubscribe并使用grep管道的好方法是什么。
我试过
redis-cli psubscribe "somepattern*" | grep somevalue
但如果模式不经常发布,它似乎无效。
答案 0 :(得分:0)
How to redirect the output of redis subscription
stdbuf -oL redis-cli psubscribe "*" | grep --line-buffered sometext