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
a3fb7fd4
Commit
a3fb7fd4
authored
Apr 10, 2012
by
antirez
Browse files
Minor MIGRATE implementation simplification about ttl handling.
parent
08827157
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/cluster.c
View file @
a3fb7fd4
...
...
@@ -1586,7 +1586,7 @@ void migrateCommand(redisClient *c) {
int
fd
;
long
timeout
;
long
dbid
;
long
long
ttl
,
expireat
;
long
long
ttl
=
0
,
expireat
;
robj
*
o
;
rio
cmd
,
payload
;
...
...
@@ -1633,7 +1633,7 @@ void migrateCommand(redisClient *c) {
redisAssertWithInfo
(
c
,
NULL
,
rioWriteBulkString
(
&
cmd
,
"RESTORE"
,
7
));
redisAssertWithInfo
(
c
,
NULL
,
c
->
argv
[
3
]
->
encoding
==
REDIS_ENCODING_RAW
);
redisAssertWithInfo
(
c
,
NULL
,
rioWriteBulkString
(
&
cmd
,
c
->
argv
[
3
]
->
ptr
,
sdslen
(
c
->
argv
[
3
]
->
ptr
)));
redisAssertWithInfo
(
c
,
NULL
,
rioWriteBulkLongLong
(
&
cmd
,
(
expireat
==-
1
)
?
0
:
ttl
));
redisAssertWithInfo
(
c
,
NULL
,
rioWriteBulkLongLong
(
&
cmd
,
ttl
));
/* Finally the last argument that is the serailized object payload
* in the DUMP format. */
...
...
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