Package xbird.util.cache.algorithm

Examples of xbird.util.cache.algorithm.LRUCache


    public Cache buildCache(String regionName, Properties properties) {
        String v = properties.getProperty(CacheFactory.PROP_MAX_CACHE_ENTRIES);
        String maxEntries = (v == null) ? DEFAULT_MAX_CACHE_ENTRIES : v;
        if (maxEntries != null) {
            int m = new Integer(maxEntries).intValue();
            return new LRUCache(regionName, m);
        } else {
            return new LRUCache(regionName);
        }
    }
View Full Code Here

TOP

Related Classes of xbird.util.cache.algorithm.LRUCache

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.