mirror of
https://github.com/fluencelabs/redis
synced 2025-06-12 00:31:21 +00:00
Implementation of the internals that make possible to terminate clients overcoming configured output buffer (soft and hard) limits.
This commit is contained in:
@ -296,6 +296,7 @@ struct redisClient *createFakeClient(void) {
|
||||
c->replstate = REDIS_REPL_WAIT_BGSAVE_START;
|
||||
c->reply = listCreate();
|
||||
c->reply_bytes = 0;
|
||||
c->obuf_soft_limit_reached_time = 0;
|
||||
c->watched_keys = listCreate();
|
||||
listSetFreeMethod(c->reply,decrRefCount);
|
||||
listSetDupMethod(c->reply,dupClientReplyValue);
|
||||
|
Reference in New Issue
Block a user