MCPcopy Create free account
hub / github.com/F-Stack/f-stack / dictSdsHash

Function dictSdsHash

app/redis-6.2.6/src/server.c:1308–1310  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1306}
1307
1308uint64_t dictSdsHash(const void *key) {
1309 return dictGenHashFunction((unsigned char*)key, sdslen((char*)key));
1310}
1311
1312uint64_t dictSdsCaseHash(const void *key) {
1313 return dictGenCaseHashFunction((unsigned char*)key, sdslen((char*)key));

Callers

nothing calls this directly

Calls 2

sdslenFunction · 0.85
dictGenHashFunctionFunction · 0.70

Tested by

no test coverage detected