| 37 | struct clusterManager cluster_manager; |
| 38 | |
| 39 | extern "C" uint64_t dictSdsHash(const void *key) { |
| 40 | return dictGenHashFunction((unsigned char*)key, sdslen((char*)key)); |
| 41 | } |
| 42 | |
| 43 | extern "C" int dictSdsKeyCompare(void *privdata, const void *key1, |
| 44 | const void *key2) |
nothing calls this directly
no test coverage detected