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
f04d799b
Commit
f04d799b
authored
Jul 18, 2018
by
zhaozhao.zz
Committed by
antirez
Oct 09, 2018
Browse files
Streams: reset approx_maxlen in every maxlen loop
parent
affd9365
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/t_stream.c
View file @
f04d799b
...
@@ -1140,6 +1140,7 @@ void xaddCommand(client *c) {
...
@@ -1140,6 +1140,7 @@ void xaddCommand(client *c) {
* creation. */
* creation. */
break;
break;
} else if (!strcasecmp(opt,"maxlen") && moreargs) {
} else if (!strcasecmp(opt,"maxlen") && moreargs) {
approx_maxlen = 0;
char *next = c->argv[i+1]->ptr;
char *next = c->argv[i+1]->ptr;
/* Check for the form MAXLEN ~ <count>. */
/* Check for the form MAXLEN ~ <count>. */
if (moreargs >= 2 && next[0] == '~' && next[1] == '\0') {
if (moreargs >= 2 && next[0] == '~' && next[1] == '\0') {
...
@@ -2207,6 +2208,7 @@ void xtrimCommand(client *c) {
...
@@ -2207,6 +2208,7 @@ void xtrimCommand(client *c) {
int moreargs = (c->argc-1) - i; /* Number of additional arguments. */
int moreargs = (c->argc-1) - i; /* Number of additional arguments. */
char *opt = c->argv[i]->ptr;
char *opt = c->argv[i]->ptr;
if (!strcasecmp(opt,"maxlen") && moreargs) {
if (!strcasecmp(opt,"maxlen") && moreargs) {
approx_maxlen = 0;
trim_strategy = TRIM_STRATEGY_MAXLEN;
trim_strategy = TRIM_STRATEGY_MAXLEN;
char *next = c->argv[i+1]->ptr;
char *next = c->argv[i+1]->ptr;
/* Check for the form MAXLEN ~ <count>. */
/* Check for the form MAXLEN ~ <count>. */
...
...
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