Package org.shiftone.cache.policy.lfu

Examples of org.shiftone.cache.policy.lfu.LfuCacheFactory


            new EHCacheCache("test"),                                                 //
            new ZeroCacheFactory().newInstance("zero", TIMEOUT_MS, KEY_COUNT),        //
            new SingleCacheFactory().newInstance("single", TIMEOUT_MS, KEY_COUNT),    //
            new FifoCacheFactory().newInstance("fifo", TIMEOUT_MS, KEY_COUNT),        //
            new LruCacheFactory().newInstance("lru", TIMEOUT_MS, KEY_COUNT),          //
            new LfuCacheFactory().newInstance("lfu", TIMEOUT_MS, KEY_COUNT),          //
            OroCache.createFIFO(KEY_COUNT),                                           //
            OroCache.createFIFO2(KEY_COUNT),                                          //
            OroCache.createLRU(KEY_COUNT),                                            //
            OroCache.createRandom(KEY_COUNT)                                          //
        };
View Full Code Here


{

    public void testSimple()
    {

        Cache  cache      = new LfuCacheFactory().newInstance("testSimple", 1000, 50);
        Object object     = new Object();
        String longString = "this is a string but it's not really that long";

        cache.addObject(longString, object);
        assertNotNull(cache.getObject(longString));
View Full Code Here

TOP

Related Classes of org.shiftone.cache.policy.lfu.LfuCacheFactory

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.