Last active 1729596815

Redis-readme-1.c Raw
1struct client {
2 int fd;
3 sds querybuf;
4 int argc;
5 robj **argv;
6 redisDb *db;
7 int flags;
8 list *reply;
9 // ... many other fields ...
10 char buf[PROTO_REPLY_CHUNK_BYTES];
11}