From 4f06867afe756f7f2d7a9bbb93a19206455a9121 Mon Sep 17 00:00:00 2001 From: antirez Date: Tue, 13 Sep 2011 12:21:54 +0200 Subject: [PATCH] added a newline for code readability --- src/redis.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/redis.c b/src/redis.c index 6b92018d..77f4666c 100644 --- a/src/redis.c +++ b/src/redis.c @@ -575,6 +575,7 @@ int serverCron(struct aeEventLoop *eventLoop, long long id, void *clientData) { * in objects at every object access, and accuracy is not needed. * To access a global var is faster than calling time(NULL) */ server.unixtime = time(NULL); + /* We have just 22 bits per object for LRU information. * So we use an (eventually wrapping) LRU clock with 10 seconds resolution. * 2^22 bits with 10 seconds resoluton is more or less 1.5 years. -- 2.45.2