Package de.innovationgate.wgpublisher.cache

Examples of de.innovationgate.wgpublisher.cache.WebTMLCache$CacheKey


        }
     
        // 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

Related Classes of de.innovationgate.wgpublisher.cache.WebTMLCache$CacheKey

Copyright © 2018 www.massapicom. 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.