コード例 #1
0
 /** Benchmark to test speed. new sampling LFU 132ms */
 public void testBenchmarkPutGet() throws Exception {
   super.testBenchmarkPutGet();
 }
コード例 #2
0
 /** setup test */
 protected void setUp() throws Exception {
   super.setUp();
   createMemoryStore(MemoryStoreEvictionPolicy.LFU);
 }
コード例 #3
0
 /**
  * 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();
 }