Most of the features already implemented for this release. The following is a list of the missing things in order to release the first beta tar.gz:
* Document "masterauth" in redis.conf, also merge the other related patch if it seems a safe one.
-* SETNX and MSETNX should use lookupKeWrite() in order to expire volatile keys when a write attempt is made.
VERSION 1.4 TODO (Hash type)
============================
static void setGenericCommand(redisClient *c, int nx) {
int retval;
- deleteIfVolatile(c->db,c->argv[1]);
+ if (nx) deleteIfVolatile(c->db,c->argv[1]);
retval = dictAdd(c->db->dict,c->argv[1],c->argv[2]);
if (retval == DICT_ERR) {
if (!nx) {