Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichael-grunder <michael.grunder@gmail.com>2017-09-29 01:44:18 +0300
committermichael-grunder <michael.grunder@gmail.com>2017-09-29 01:44:18 +0300
commit345fc7fc9f3296f35709070fa2de1d92a6da0628 (patch)
tree64b9b1bd56b8eae17e80cd3ad88072f0f626f2c8 /redis_array.h
parent6a53cb99baa45309ab509d4f2076b9c086ff1b6b (diff)
Destroy all tabs :-)
Diffstat (limited to 'redis_array.h')
-rw-r--r--redis_array.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/redis_array.h b/redis_array.h
index f036c264..d6a00fa0 100644
--- a/redis_array.h
+++ b/redis_array.h
@@ -39,20 +39,20 @@ PHP_METHOD(RedisArray, unwatch);
typedef struct RedisArray_ {
- int count;
- char **hosts; /* array of host:port strings */
- zval *redis; /* array of Redis instances */
- zval *z_multi_exec; /* Redis instance to be used in multi-exec */
- zend_bool index; /* use per-node index */
- zend_bool auto_rehash; /* migrate keys on read operations */
- zend_bool pconnect; /* should we use pconnect */
- zval z_fun; /* key extractor, callable */
- zval z_dist; /* key distributor, callable */
- HashTable *pure_cmds; /* hash table */
- double connect_timeout; /* socket connect timeout */
- double read_timeout; /* socket read timeout */
+ int count;
+ char **hosts; /* array of host:port strings */
+ zval *redis; /* array of Redis instances */
+ zval *z_multi_exec; /* Redis instance to be used in multi-exec */
+ zend_bool index; /* use per-node index */
+ zend_bool auto_rehash; /* migrate keys on read operations */
+ zend_bool pconnect; /* should we use pconnect */
+ zval z_fun; /* key extractor, callable */
+ zval z_dist; /* key distributor, callable */
+ HashTable *pure_cmds; /* hash table */
+ double connect_timeout; /* socket connect timeout */
+ double read_timeout; /* socket read timeout */
- struct RedisArray_ *prev;
+ struct RedisArray_ *prev;
} RedisArray;
#if (PHP_MAJOR_VERSION < 7)