+2009-05-11 disconnect when we cannot read from the socket
+2009-05-11 benchmark utility now supports random keys
+2009-05-10 minor doc changes
+2009-05-09 added tests for vararg DEL
+2009-05-09 DEL is now a vararg, IMPORTANT: memory leak fixed in loading DB code
2009-05-09 doc changes
2009-05-09 CPP client added thanks to Brian Hammond
2009-05-06 Infinite number of arguments for MGET and all the other commands
BEFORE REDIS 1.0.0-rc1
+ * Warning if using default config, with hint about 'redis-server redis.conf'
+ * Log timestamp
* SDIFF, SDIFFSTORE
* Add number of keys for every DB in INFO
* maxmemory support
close(s);
return ANET_ERR;
}
- if (listen(s, 32) == -1) {
+ if (listen(s, 64) == -1) {
anetSetError(err, "listen: %s\n", strerror(errno));
close(s);
return ANET_ERR;
c->written = 0;
c->state = CLIENT_SENDQUERY;
c->start = mstime();
+ createMissingClients(c);
}
static void randomizeClientKey(client c) {