Home
last modified time | relevance | path

Searched refs:hashTypeLength (Results 1 – 6 of 6) sorted by relevance

/f-stack/app/redis-5.0.5/src/
H A Dt_hash.c237 if (hashTypeLength(o) > server.hash_max_ziplist_entries) in hashTypeSet()
311 unsigned long hashTypeLength(const robj *o) { in hashTypeLength() function
716 if (hashTypeLength(o) == 0) { in hdelCommand()
740 addReplyLongLong(c,hashTypeLength(o)); in hlenCommand()
782 length = hashTypeLength(o) * multiplier; in genericHgetallCommand()
H A Drdb.c1605 if (hashTypeLength(o) > server.hash_max_ziplist_entries || in rdbLoadObject()
1632 if (hashTypeLength(o) > server.hash_max_ziplist_entries) in rdbLoadObject()
H A Daof.c1100 long long count = 0, items = hashTypeLength(o); in rewriteHashObject()
H A Ddebug.c688 serverLog(LL_WARNING,"Hash size: %d", (int) hashTypeLength(o)); in serverLogObjectDebugInfo()
H A Dmodule.c463 case OBJ_HASH : isempty = hashTypeLength(o) == 0; break; in moduleDelKeyIfEmpty()
1585 case OBJ_HASH: return hashTypeLength(key->value); in RM_ValueLength()
H A Dserver.h1781 unsigned long hashTypeLength(const robj *o);