Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
89ee361e
Commit
89ee361e
authored
Nov 19, 2009
by
antirez
Browse files
benchmark.c fixes
parent
c28b42ac
Changes
1
Hide whitespace changes
Inline
Side-by-side
benchmark.c
View file @
89ee361e
...
...
@@ -137,7 +137,8 @@ static void resetClient(client c) {
aeCreateFileEvent
(
config
.
el
,
c
->
fd
,
AE_WRITABLE
,
writeHandler
,
c
,
NULL
);
sdsfree
(
c
->
ibuf
);
c
->
ibuf
=
sdsempty
();
c
->
readlen
=
(
c
->
replytype
==
REPLY_BULK
)
?
-
1
:
0
;
c
->
readlen
=
(
c
->
replytype
==
REPLY_BULK
||
c
->
replytype
==
REPLY_MBULK
)
?
-
1
:
0
;
c
->
mbulk
=
-
1
;
c
->
written
=
0
;
c
->
state
=
CLIENT_SENDQUERY
;
...
...
@@ -238,6 +239,7 @@ processdata:
*
p
=
'\0'
;
*
(
p
-
1
)
=
'\0'
;
c
->
readlen
=
atoi
(
c
->
ibuf
+
1
)
+
2
;
// printf("BULK ATOI: %s\n", c->ibuf+1);
/* Handle null bulk reply "$-1" */
if
(
c
->
readlen
-
2
==
-
1
)
{
clientDone
(
c
);
...
...
@@ -258,6 +260,7 @@ processdata:
clientDone
(
c
);
return
;
}
// printf("%p) %d elements list\n", c, c->mbulk);
/* Leave all the rest in the input buffer */
c
->
ibuf
=
sdsrange
(
c
->
ibuf
,(
p
-
c
->
ibuf
)
+
1
,
-
1
);
goto
processdata
;
...
...
@@ -273,9 +276,14 @@ processdata:
(
c
->
replytype
==
REPLY_BULK
))
&&
c
->
readlen
!=
-
1
&&
(
unsigned
)
c
->
readlen
<=
sdslen
(
c
->
ibuf
))
{
// printf("BULKSTATUS mbulk:%d readlen:%d sdslen:%d\n",
// c->mbulk,c->readlen,sdslen(c->ibuf));
if
(
c
->
replytype
==
REPLY_BULK
)
{
clientDone
(
c
);
}
else
if
(
c
->
replytype
==
REPLY_MBULK
)
{
// printf("%p) %d (%d)) ",c, c->mbulk, c->readlen);
// fwrite(c->ibuf,c->readlen,1,stdout);
// printf("\n");
if
(
--
c
->
mbulk
==
0
)
{
clientDone
(
c
);
}
else
{
...
...
@@ -486,7 +494,6 @@ int main(int argc, char **argv) {
}
do
{
#if 0
prepareForBenchmark
();
c
=
createClient
();
if
(
!
c
)
exit
(
1
);
...
...
@@ -548,7 +555,6 @@ int main(int argc, char **argv) {
aeMain
(
config
.
el
);
endBenchmark
(
"PING"
);
#endif
prepareForBenchmark
();
c
=
createClient
();
if
(
!
c
)
exit
(
1
);
...
...
@@ -558,7 +564,6 @@ int main(int argc, char **argv) {
aeMain
(
config
.
el
);
endBenchmark
(
"LPUSH (again, in order to bench LRANGE)"
);
#if 0
prepareForBenchmark
();
c
=
createClient
();
if
(
!
c
)
exit
(
1
);
...
...
@@ -585,7 +590,6 @@ int main(int argc, char **argv) {
createMissingClients
(
c
);
aeMain
(
config
.
el
);
endBenchmark
(
"LRANGE (first 450 elements)"
);
#endif
prepareForBenchmark
();
c
=
createClient
();
...
...
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