| http://www.w3.org/ns/prov#value | - /* The actual Redis Object */
typedef struct redisObject {
 void *ptr;
 unsigned char type;
 unsigned char encoding;
 unsigned char storage; /* If this object is a key, where is the value?
 * REDIS_VM_MEMORY, REDIS_VM_SWAPPED, ... */
 unsigned char vtype; /* If this object is a key, and value is swapped ou
|