Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
74077975
Commit
74077975
authored
May 11, 2009
by
antirez
Browse files
Python client updated pushing from Ludo's repository
parent
b062edf3
Changes
4
Show whitespace changes
Inline
Side-by-side
Changelog
View file @
74077975
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
...
...
TODO
View file @
74077975
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
...
...
anet.c
View file @
74077975
...
...
@@ -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
;
...
...
benchmark.c
View file @
74077975
...
...
@@ -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
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment