Home
last modified time | relevance | path

Searched refs:repl_scriptcache_dict (Results 1 – 4 of 4) sorted by relevance

/f-stack/app/redis-5.0.5/src/
H A Dreplication.c2333 server.repl_scriptcache_dict = dictCreate(&replScriptCacheDictType,NULL); in replicationScriptCacheInit()
2349 dictEmpty(server.repl_scriptcache_dict,NULL); in replicationScriptCacheFlush()
2366 retval = dictDelete(server.repl_scriptcache_dict,oldest); in replicationScriptCacheAdd()
2372 retval = dictAdd(server.repl_scriptcache_dict,key,NULL); in replicationScriptCacheAdd()
2380 return dictFind(server.repl_scriptcache_dict,sha1) != NULL; in replicationScriptCacheExists()
H A Dobject.c1031 mem += dictSize(server.repl_scriptcache_dict) * sizeof(dictEntry) + in getMemoryOverheadData()
1032 dictSlots(server.repl_scriptcache_dict) * sizeof(dictEntry*); in getMemoryOverheadData()
H A Ddefrag.c893 …= activeDefragSdsListAndDict(server.repl_scriptcache_fifo, server.repl_scriptcache_dict, DEFRAG_SD… in defragOtherGlobals()
H A Dserver.h1185 dict *repl_scriptcache_dict; /* SHA1 all slaves are aware of. */ member