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:
authorNicolas Favre-Felix <n.favrefelix@gmail.com>2011-09-04 17:30:37 +0400
committerNicolas Favre-Felix <n.favrefelix@gmail.com>2011-09-04 17:30:37 +0400
commit68abdf4282bae996b5796d321adeaf042c878dd3 (patch)
tree2b1e7fd7aa22883d048c93da643d04b549fd8382 /redis_array.h
parent2b9a7d96d2769898644ce1f4fa82439d74663ee8 (diff)
Auto rehash keys on read miss + config.ini
Diffstat (limited to 'redis_array.h')
-rw-r--r--redis_array.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/redis_array.h b/redis_array.h
index cdbeb9f0..84f5db30 100644
--- a/redis_array.h
+++ b/redis_array.h
@@ -32,6 +32,7 @@ typedef struct RedisArray_ {
zval *z_fun; /* key extractor */
zval *z_pure_cmds; /* hash table */
+ int auto_rehash; /* migrate keys on read operations */
struct RedisArray_ *prev;
} RedisArray;