Last active 1729596854

Redis-readme-2.c Raw
1struct redisObject {
2 unsigned type:4;
3 unsigned encoding:4;
4 unsigned lru:LRU_BITS; /* LRU time (relative to global lru_clock) or
5 * LFU data (least significant 8 bits frequency
6 * and most significant 16 bits access time). */
7 int refcount;
8 void *ptr;
9};