Package net.sf.swarmcache

Examples of net.sf.swarmcache.LRUCache


    private final ObjectCache cache;

    public SwarmCache(int size)
    {

        LRUCache lruCache = new LRUCache();

        lruCache.setSize(size);

        this.cache = lruCache;
    }
View Full Code Here

TOP

Related Classes of net.sf.swarmcache.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.