-
src/redis.h:
-
-
/* Cygwin Fix */
-
#ifdef __CYGWIN__
-
#ifndef SA_ONSTACK
-
#define SA_ONSTACK 0x08000000
-
#endif
-
#endif
/deps/hiredis/net.c:
在 #include "sds.h"后增加以下代码
/* Cygwin Fix */
#ifdef __CYGWIN__
#define TCP_KEEPCNT 8
#define TCP_KEEPINTVL 150
#define TCP_KEEPIDLE 14400
#endif
根据redis入门书中所说,redis使用了很多linux的特性,所以官方是不支持windows的,只能用来学习。