Остання активність 1729596854

Версія 10f743188bf4ab1fb4f17db9171c0b300de8937c

Redis-readme-2.c Неформатований
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};