Examples of WebTMLCache


Examples of de.innovationgate.wgpublisher.cache.WebTMLCache

        }
     
        // WebTML Cache
        int tmlCache = _wgaConfiguration.getWebtmlCacheSize();
        if (_webTMLCache == null) {
            _webTMLCache = new WebTMLCache(tmlCache);
            getLog().info("WebTML Cache Capacity is set to " + tmlCache + " entries");
        }
        else if (_webTMLCache.getCapacity() != tmlCache){
            _webTMLCache.setCapacity(tmlCache);
            getLog().info("WebTML Cache Capacity is set to " + tmlCache + " entries (ineffective until a WebTML cache reset)");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.