From: antirez Date: Tue, 13 Sep 2011 10:21:54 +0000 (+0200) Subject: added a newline for code readability X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/4f06867afe756f7f2d7a9bbb93a19206455a9121?ds=inline added a newline for code readability --- 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.