Package org.apache.commons.cache

Examples of org.apache.commons.cache.Stash


    }
   
    protected final Cache createCache(String messageBundle, String cacheFullText) {
        File cacheDirectory = new File(ContextHolder.getContext().getTempDirectory(), "cache");
        File cacheTypeDirectory = new File(cacheDirectory, cacheType);
        Stash stash = inMemoryCache ? new MemoryStash(cacheSize) : new FileStash(Long.MAX_VALUE, cacheSize, new File[]{cacheTypeDirectory}, true);

        // eviction can't be used in testing as the policy creates a thread
        // which is only stopped on JVM exit, hence breaking the tests
        boolean isTestMode = "true".equals(SystemProperties.get("adito.testing", "false"));
        EvictionPolicy evictionPolicy = isTestMode ? null : new LRUEvictionPolicy();
View Full Code Here

TOP

Related Classes of org.apache.commons.cache.Stash

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.