Redis 5.0.7 Source Code Reading - Dictionary Implementation
In Redis, the dictionary-related files are dict.h and dict.c. The dictionary in Redis is more like a hash table.
Data Structures
dictEntry
typedef struct dictEntry {
void *key;
union {
void *val;
uint64_t u64;
int64_t s64;
double d;
} v;
struct dictEntry *next;
} dictEntry;
The dictEntry str ...
Đăng vào ngày 20 tháng 5 lúc 20:38