/** Benchmark to test speed. new sampling LFU 132ms */ public void testBenchmarkPutGet() throws Exception { super.testBenchmarkPutGet(); }
/** setup test */ protected void setUp() throws Exception { super.setUp(); createMemoryStore(MemoryStoreEvictionPolicy.LFU); }
/** * Multi-thread read, put and removeAll test. This checks for memory leaks using the removeAll * which was the known cause of memory leaks with LruMemoryStore in JCS new sampling LFU has no * leaks */ public void testMemoryLeak() throws Exception { super.testMemoryLeak(); }