summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2015-05-04 12:01:39 +0200
committerantirez <antirez@gmail.com>2015-05-04 12:05:56 +0200
commitaaac257147acbb40e96c8d8be5c8d1aa249e5393 (patch)
treebb315e3dee2fec82dac1fd092094526ae4a90a6c
parentcd05a665dc1dded3cfbc78ceaa5a5d00381f0ad7 (diff)
downloadredis-less-mstime-28.tar.gz
Use cached time in expireCommand()less-mstime-28
Should not be an issue given that the precision is the second here, at least if we are using a decent HZ value and the cached time refreshes enough times. So the cached time is only used if HZ is >= 10.
-rw-r--r--src/db.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/db.c b/src/db.c
index 2b8acf855..619751791 100644
--- a/src/db.c
+++ b/src/db.c
@@ -912,7 +912,8 @@ void expireGenericCommand(redisClient *c, long long basetime, int unit) {
}
void expireCommand(redisClient *c) {
- expireGenericCommand(c,mstime(),UNIT_SECONDS);
+ long long now = server.hz >= 10 ? server.mstime: mstime();
+ expireGenericCommand(c,now,UNIT_SECONDS);
}
void expireatCommand(redisClient *c) {