Improve non blocking opening and closing of sockets
This commit is contained in:
committed by
JonathanPickett
parent
cb85f493cb
commit
89cae3d62e
@@ -1,4 +1,4 @@
|
||||
Redis on Windows 2.6 prototype
|
||||
Redis on Windows 2.6 prototype
|
||||
===
|
||||
## What's new in this release
|
||||
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -635,9 +635,6 @@ void freeClient(redisClient *c) {
|
||||
* unblockClientWaitingData() to avoid processInputBuffer() will get
|
||||
* called. Also it is important to remove the file events after
|
||||
* this, because this call adds the READABLE event. */
|
||||
#ifdef _WIN32
|
||||
aeWinSocketDetach(c->fd, 1);
|
||||
#endif
|
||||
sdsfree(c->querybuf);
|
||||
c->querybuf = NULL;
|
||||
if (c->flags & REDIS_BLOCKED)
|
||||
|
||||
Reference in New Issue
Block a user