| 254 | } |
| 255 | |
| 256 | static uint64_t dictSdsHash(const void *key) { |
| 257 | return dictGenHashFunction((unsigned char*)key, sdslen((char*)key)); |
| 258 | } |
| 259 | |
| 260 | static int dictSdsKeyCompare(void *privdata, const void *key1, |
| 261 | const void *key2) |
nothing calls this directly
no test coverage detected