mirror of
https://github.com/fluencelabs/redis
synced 2025-04-03 00:01:04 +00:00
Use writev(2) if glue output buffers is disabled
This commit is contained in:
parent
89ee361eef
commit
7ea870c092
7
redis.c
7
redis.c
@ -1385,14 +1385,13 @@ static void sendReplyToClient(aeEventLoop *el, int fd, void *privdata, int mask)
|
|||||||
|
|
||||||
|
|
||||||
/* Use writev() if we have enough buffers to send */
|
/* Use writev() if we have enough buffers to send */
|
||||||
#if 0
|
if (!server.glueoutputbuf &&
|
||||||
if (listLength(c->reply) > REDIS_WRITEV_THRESHOLD &&
|
listLength(c->reply) > REDIS_WRITEV_THRESHOLD &&
|
||||||
!(c->flags & REDIS_MASTER))
|
!(c->flags & REDIS_MASTER))
|
||||||
{
|
{
|
||||||
sendReplyToClientWritev(el, fd, privdata, mask);
|
sendReplyToClientWritev(el, fd, privdata, mask);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
while(listLength(c->reply)) {
|
while(listLength(c->reply)) {
|
||||||
if (server.glueoutputbuf && listLength(c->reply) > 1)
|
if (server.glueoutputbuf && listLength(c->reply) > 1)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user