xref: /redis-3.2.3/utils/hashtable/README (revision edda00b9)
1Hash table implementation related utilities.
2
3rehashing.c
4---
5
6Visually show buckets in the two hash tables between rehashings. Also stress
7test getRandomKeys() implementation, that may actually disappear from
8Redis soon, however visualizaiton some code is reusable in new bugs
9investigation.
10
11Compile with:
12
13    cc -I ../../src/ rehashing.c ../../src/zmalloc.c ../../src/dict.c -o rehashing_test
14