From 2e7d7cbabd32912342218078282fce92f6cc0ab6 Mon Sep 17 00:00:00 2001 From: Michael Grunder Date: Sun, 19 Jul 2020 18:54:42 -0700 Subject: Resp3 oob push support (#841) Proper support for RESP3 PUSH messages. By default, PUSH messages are now intercepted and the reply memory freed. This means existing code should work unchanged when connecting to Redis >= 6.0.0 even if `CLIENT TRACKING` were then enabled. Additionally, we define two callbacks users can configure if they wish to handle these messages in a custom way: void redisPushFn(void *privdata, void *reply); void redisAsyncPushFn(redisAsyncContext *ac, void *reply); See #825 --- .gitignore | 1 + 1 file changed, 1 insertion(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 8e50b54..056959f 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /*.a /*.pc *.dSYM +tags -- cgit v1.2.3