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>2019-02-09 05:08:17 +0300
committermichael-grunder <michael.grunder@gmail.com>2019-02-09 05:08:17 +0300
commit9f0d7bc0a4d3bbf5a539b855a5d1c32abf9f2300 (patch)
treee6a539817659f246c7301f72df82d9506a6bbc71 /common.h
parentf9928642b5e539bbdca43ec51ed9c9642cb42ded (diff)
WIP: Reimplementation of cluster slot caching
RedisCluster currently has a high construction overhead because every request has to issue a CLUSTER SLOTS command to map the keyspace. The issue is especially evident when a request only does a few commands.
Diffstat (limited to 'common.h')
-rw-r--r--common.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/common.h b/common.h
index 34f84416..fbe44460 100644
--- a/common.h
+++ b/common.h
@@ -6,6 +6,7 @@
#define PHPREDIS_NOTUSED(v) ((void)v)
+#include "zend_llist.h"
#include <ext/standard/php_var.h>
#include <ext/standard/php_math.h>
#include <zend_smart_str.h>