Python client updated pushing from Ludo's repository

This commit is contained in:
antirez 2009-05-11 13:50:09 +02:00
parent b062edf392
commit 7407797596
4 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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

2
TODO
View File

@ -1,5 +1,7 @@
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

2
anet.c
View File

@ -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;

View File

@ -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) {