add support for 'connect_timeout' option for redis arrays

Conflicts:
	redis_array.c
	redis_array_impl.c
	redis_array_impl.h
This commit is contained in:
Mike
2013-06-27 00:58:56 -04:00
committed by michael-grunder
parent 2e2a84a99e
commit 6f5e47cec3
4 changed files with 43 additions and 7 deletions
+1
View File
@@ -45,6 +45,7 @@ typedef struct RedisArray_ {
zval *z_fun; /* key extractor, callable */
zval *z_dist; /* key distributor, callable */
zval *z_pure_cmds; /* hash table */
double connect_timeout; /* socket connect timeout */
struct RedisArray_ *prev;
} RedisArray;