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
aacecbc9
Commit
aacecbc9
authored
Feb 11, 2018
by
赵磊
Browse files
Remove updateLFU() in dbOverwrite().
parent
32ac4c64
Changes
1
Show whitespace changes
Inline
Side-by-side
src/db.c
View file @
aacecbc9
...
...
@@ -187,9 +187,6 @@ void dbOverwrite(redisDb *db, robj *key, robj *val) {
int
saved_lru
=
old
->
lru
;
dictReplace
(
db
->
dict
,
key
->
ptr
,
val
);
val
->
lru
=
saved_lru
;
/* LFU should be not only copied but also updated
* when a key is overwritten. */
updateLFU
(
val
);
}
else
{
dictReplace
(
db
->
dict
,
key
->
ptr
,
val
);
}
...
...
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