• Mark Ellzey's avatar
    Use poll() instead of select() inside redisContextWaitReady() · f8debbfd
    Mark Ellzey authored
    The current select() is limiting in instances where the fd num is > FD_SETSIZE.
    Since redisContextWaitReady() only processes a single fd, select would still
    fail.
    
    For compatibility reasons I have converted select() over to poll(), eliminating
    this problem.
    f8debbfd
net.c 8.69 KB