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:
authorPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2019-02-18 15:33:29 +0300
committermichael-grunder <michael.grunder@gmail.com>2019-03-19 21:09:26 +0300
commit0d2dd169fac48f09fb4fbea3268e06b61d4d0a0c (patch)
tree20e8ad3aefd295fdda8dd2c535cac9d0052d88f5 /redis_array.h
parent0c02d5762b285063a7cfd8626a0545f237bc452d (diff)
Use zend_string for storing key hashing algorithm
Diffstat (limited to 'redis_array.h')
-rw-r--r--redis_array.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis_array.h b/redis_array.h
index 1ee192fa..05cf5ad6 100644
--- a/redis_array.h
+++ b/redis_array.h
@@ -58,7 +58,7 @@ typedef struct RedisArray_ {
zend_bool pconnect; /* should we use pconnect */
zval z_fun; /* key extractor, callable */
zval z_dist; /* key distributor, callable */
- zval z_algo; /* key hashing algorithm name */
+ zend_string *algorithm; /* key hashing algorithm name */
HashTable *pure_cmds; /* hash table */
double connect_timeout; /* socket connect timeout */
double read_timeout; /* socket read timeout */