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

Function dictFetchValue

app/redis-6.2.6/src/dict.c:524–529  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

522}
523
524void *dictFetchValue(dict *d, const void *key) {
525 dictEntry *he;
526
527 he = dictFind(d,key);
528 return he ? dictGetVal(he) : NULL;
529}
530
531/* A fingerprint is a 64 bit number that represents the state of the dictionary
532 * at a given time, it's just a few dict properties xored together.

Callers 15

rewriteConfigRewriteLineFunction · 0.85
evalGenericCommandFunction · 0.85
unblockClientWaitingDataFunction · 0.85
pubsubCommandFunction · 0.85
sentinelGetMasterByNameFunction · 0.85
watchForKeyFunction · 0.85
unwatchAllKeysFunction · 0.85

Calls 1

dictFindFunction · 0.70

Tested by

no test coverage detected