Cluster: hash slots tracking using a radix tree.

This commit is contained in:
antirez
2017-03-27 15:26:56 +02:00
parent a9fefbce2e
commit c4716d3345
9 changed files with 2114 additions and 64 deletions

View File

@ -63,7 +63,9 @@ typedef long long mstime_t; /* millisecond time type. */
#include "util.h" /* Misc functions useful in many places */
#include "latency.h" /* Latency monitor API */
#include "sparkline.h" /* ASCII graphs API */
#include "quicklist.h"
#include "quicklist.h" /* Lists are encoded as linked lists of
N-elements flat arrays */
#include "rax.h" /* Radix tree */
/* Following includes allow test functions to be called from Redis main() */
#include "zipmap.h"