| 1301 | } |
| 1302 | |
| 1303 | uint64_t dictObjHash(const void *key) { |
| 1304 | const robj *o = key; |
| 1305 | return dictGenHashFunction(o->ptr, sdslen((sds)o->ptr)); |
| 1306 | } |
| 1307 | |
| 1308 | uint64_t dictSdsHash(const void *key) { |
| 1309 | return dictGenHashFunction((unsigned char*)key, sdslen((char*)key)); |
nothing calls this directly
no test coverage detected