Access URL with cache of LRU algorithm.
4445464748495051
@Override public void init(ServiceUrl serviceUrl) { this.serviceUrl = serviceUrl; if (cacheSize > 0 && cacheExpire > 0) { cache = new AccessUrlCache(cacheSize, cacheExpire); } }