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
f6da155b
Commit
f6da155b
authored
Feb 23, 2012
by
antirez
Browse files
redis-benchmark: a few fixes to pipelining implementation.
parent
b9474282
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/redis-benchmark.c
View file @
f6da155b
...
...
@@ -78,7 +78,7 @@ static struct config {
typedef
struct
_client
{
redisContext
*
context
;
sds
obuf
;
char
*
randptr
[
10
];
/* needed for MSET against 10 keys */
char
*
randptr
[
32
];
/* needed for MSET against 10 keys */
size_t
randlen
;
unsigned
int
written
;
/* bytes of 'obuf' already written */
long
long
start
;
/* start time of a request */
...
...
@@ -271,13 +271,11 @@ static client createClient(char *cmd, size_t len) {
/* Find substrings in the output buffer that need to be randomized. */
if
(
config
.
randomkeys
)
{
char
*
p
=
c
->
obuf
,
*
newline
;
char
*
p
=
c
->
obuf
;
while
((
p
=
strstr
(
p
,
":rand:"
))
!=
NULL
)
{
newline
=
strstr
(
p
,
"
\r\n
"
);
assert
(
newline
-
(
p
+
6
)
==
12
);
/* 12 chars for randomness */
assert
(
c
->
randlen
<
(
signed
)(
sizeof
(
c
->
randptr
)
/
sizeof
(
char
*
)));
c
->
randptr
[
c
->
randlen
++
]
=
p
+
6
;
p
=
newline
+
2
;
p
+
=
6
;
}
}
...
...
@@ -292,7 +290,7 @@ static void createMissingClients(client c) {
int
n
=
0
;
while
(
config
.
liveclients
<
config
.
numclients
)
{
createClient
(
c
->
obuf
,
sdslen
(
c
->
obuf
));
createClient
(
c
->
obuf
,
sdslen
(
c
->
obuf
)
/
config
.
pipeline
);
/* Listen backlog is quite limited on most systems */
if
(
++
n
>
64
)
{
...
...
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