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

Function dictObjKeyCompare

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

Source from the content-addressed store, hash-verified

1294}
1295
1296int dictObjKeyCompare(void *privdata, const void *key1,
1297 const void *key2)
1298{
1299 const robj *o1 = key1, *o2 = key2;
1300 return dictSdsKeyCompare(privdata,o1->ptr,o2->ptr);
1301}
1302
1303uint64_t dictObjHash(const void *key) {
1304 const robj *o = key;

Callers

nothing calls this directly

Calls 1

dictSdsKeyCompareFunction · 0.70

Tested by

no test coverage detected