Commit 5a6e8b1d authored by Bob Potter's avatar Bob Potter
Browse files

Rearrange redisObject struct to reduce memory usage in 64bit environments (as...

Rearrange redisObject struct to reduce memory usage in 64bit environments (as recommended http://groups.google.com/group/redis-db/msg/68f5a743f8f4e287)
parent 27dd1526
......@@ -156,8 +156,8 @@
/* A redis object, that is a type able to hold a string / list / set */
typedef struct redisObject {
int type;
void *ptr;
int type;
int refcount;
} robj;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment