Skip to content

Commit

Permalink
Python client updated pushing from Ludo's repository
Browse files Browse the repository at this point in the history
  • Loading branch information
antirez committed May 11, 2009
1 parent b062edf commit 7407797
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
5 changes: 5 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 2 additions & 0 deletions TODO
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion anet.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
1 change: 1 addition & 0 deletions benchmark.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 7407797

Please sign in to comment.