Hi, I wanted to start discussion about MONITOR's response in RESP3 world, recently i started to play with RESP3, SUBSCRIBE works well but when i tested it with monitor command - REDIS responded me with old style RESP2 (as described in https://github.com/antirez/RESP3/issues/21) - I made some change here https://github.com/antirez/redis/pull/6425 - MONITOR's respond looks now like
>2<CR><LF>
+monitor<CR><LF>
+1570222265.713997 [0 127.0.0.1:63306] "set" "some" "data"<CR><LF>
What do you think about that PR ? Should I also make change in redis-cli and write some tests? happy to apply any suggestion.
Thanks !
Comment From: mzimbres
I am wondering why this issue is not gaining more attention. Without this changes it is not possible to reuse the connection for further commands. I can't make my Redis client generic.