Handle Redis protocol message separately

Closes #4504

Messages from pub/sub need separate handling in order to not mess up
client request/reply correlation.
This commit is contained in:
Evan Typanski 2025-06-10 16:00:22 -04:00
parent bbca02fe70
commit 5af510d5d7
7 changed files with 52 additions and 10 deletions

View file

@ -101,3 +101,11 @@ global reply: event(c: connection, data: ReplyData);
##
## data: The server data sent to the client.
global error: event(c: connection, data: ReplyData);
## Generated for every message the server sends that is not a reply to a
## command.
##
## c: The connection.
##
## data: The server data sent to the client.
global server_message: event(c: connection, data: ReplyData);