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
b4c4be78
Commit
b4c4be78
authored
Oct 27, 2014
by
zhanghailei
Browse files
FIXED redis-benchmark's idle mode.With idle mode shouldn't create write event
parent
93eed9ae
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/redis-benchmark.c
View file @
b4c4be78
...
...
@@ -390,7 +390,8 @@ static client createClient(char *cmd, size_t len, client from) {
}
}
}
aeCreateFileEvent
(
config
.
el
,
c
->
context
->
fd
,
AE_WRITABLE
,
writeHandler
,
c
);
if
(
config
.
idlemode
==
0
)
aeCreateFileEvent
(
config
.
el
,
c
->
context
->
fd
,
AE_WRITABLE
,
writeHandler
,
c
);
listAddNodeTail
(
config
.
clients
,
c
);
config
.
liveclients
++
;
return
c
;
...
...
@@ -599,9 +600,13 @@ int showThroughput(struct aeEventLoop *eventLoop, long long id, void *clientData
if
(
config
.
liveclients
==
0
)
{
fprintf
(
stderr
,
"All clients disconnected... aborting.
\n
"
);
exit
(
1
);
}
}
if
(
config
.
csv
)
return
250
;
if
(
config
.
idlemode
==
1
)
{
printf
(
"clients: %d
\r
"
,
config
.
liveclients
);
fflush
(
stdout
);
return
250
;
}
float
dt
=
(
float
)(
mstime
()
-
config
.
start
)
/
1000
.
0
;
float
rps
=
(
float
)
config
.
requests_finished
/
dt
;
printf
(
"%s: %.2f
\r
"
,
config
.
title
,
rps
);
...
...
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