resolution = parseInteger(readSystemProperty("TimedPolicyCaching.resolution", null));
log.debugf("Creating timed cache policy, lifetime: %1d, threadSafe: %2b, resolution: %3d", defaultLifetime, threadSafe, resolution);
if (defaultLifetime == null)
return new TimedCachePolicyFactory();
else if (resolution != null)
return new TimedCachePolicyFactory(defaultLifetime, threadSafe, resolution);
else
return new TimedCachePolicyFactory(defaultLifetime);
}