Commit 74077975 authored by antirez's avatar antirez
Browse files

Python client updated pushing from Ludo's repository

parent b062edf3
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
......
......@@ -237,7 +237,7 @@ int anetTcpServer(char *err, int port, char *bindaddr)
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;
......
......@@ -137,6 +137,7 @@ static void resetClient(client c) {
c->written = 0;
c->state = CLIENT_SENDQUERY;
c->start = mstime();
createMissingClients(c);
}
static void randomizeClientKey(client c) {
......
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