Package org.shiftone.cache

Examples of org.shiftone.cache.Cache.clear()


        {
            cache.addObject("k-" + i, "v-" + i);
        }

        assertEquals(1000, cache.size());
        cache.clear();
        assertEquals(0, cache.size());
    }


    /**
 
View Full Code Here


        {
            cache.addObject("k-" + (i % 500), "v-" + i);
        }

        assertEquals(500, cache.size());
        cache.clear();
        assertEquals(0, cache.size());
    }


    /**
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.