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-01-03 17:08:09 +0300
committerPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2019-01-03 17:17:20 +0300
commit850027ffd36ce224846d142fd3fb5344f08aef16 (patch)
tree34d8e9aec88bf4b770c6a19e8f5dbc8b80f43895 /redis_array_impl.h
parent71922bf1dd30af17cf2939b1c5e9b33f7fe2a5c4 (diff)
Different key hashing algorithms from hash extension.
Diffstat (limited to 'redis_array_impl.h')
-rw-r--r--redis_array_impl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis_array_impl.h b/redis_array_impl.h
index fa5fd848..43705ee5 100644
--- a/redis_array_impl.h
+++ b/redis_array_impl.h
@@ -11,7 +11,7 @@
RedisArray *ra_load_hosts(RedisArray *ra, HashTable *hosts, long retry_interval, zend_bool b_lazy_connect TSRMLS_DC);
RedisArray *ra_load_array(const char *name TSRMLS_DC);
-RedisArray *ra_make_array(HashTable *hosts, zval *z_fun, zval *z_dist, HashTable *hosts_prev, zend_bool b_index, zend_bool b_pconnect, long retry_interval, zend_bool b_lazy_connect, double connect_timeout, double read_timeout, zend_bool consistent TSRMLS_DC);
+RedisArray *ra_make_array(HashTable *hosts, zval *z_fun, zval *z_dist, zval *z_algo, HashTable *hosts_prev, zend_bool b_index, zend_bool b_pconnect, long retry_interval, zend_bool b_lazy_connect, double connect_timeout, double read_timeout, zend_bool consistent TSRMLS_DC);
zval *ra_find_node_by_name(RedisArray *ra, const char *host, int host_len TSRMLS_DC);
zval *ra_find_node(RedisArray *ra, const char *key, int key_len, int *out_pos TSRMLS_DC);
void ra_init_function_table(RedisArray *ra);