Specify LRU resolution in milliseconds.

This commit is contained in:
antirez
2014-03-20 11:33:25 +01:00
parent 63aacbe86c
commit 8f0b74910a
4 changed files with 4 additions and 5 deletions

View File

@ -292,7 +292,7 @@ void debugCommand(redisClient *c) {
addReplyStatusFormat(c,
"Value at:%p refcount:%d "
"encoding:%s serializedlength:%lld "
"lru:%d lru_seconds_idle:%lu",
"lru:%d lru_seconds_idle:%llu",
(void*)val, val->refcount,
strenc, (long long) rdbSavedObjectLen(val),
val->lru, estimateObjectIdleTime(val));