From 2401c3eccbe242f55651dbf4227a1f9b010b6f4e 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 566e4e7d..6beabfce 100644 --- a/src/redis.c +++ b/src/redis.c @@ -530,6 +530,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.