Java Code Examples for org.apache.ibatis.cache.decorators.WeakCache#putObject()
The following examples show how to use
org.apache.ibatis.cache.decorators.WeakCache#putObject() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: WeakCacheTest.java From mybaties with Apache License 2.0 | 5 votes |
@Test public void shouldDemonstrateObjectsBeingCollectedAsNeeded() { final int N = 3000000; WeakCache cache = new WeakCache(new PerpetualCache("default")); for (int i = 0; i < N; i++) { cache.putObject(i, i); if (cache.getSize() < i + 1) { //System.out.println("Cache exceeded with " + (i + 1) + " entries."); break; } } assertTrue(cache.getSize() < N); }
Example 2
Source File: WeakCacheTest.java From mybaties with Apache License 2.0 | 5 votes |
@Test public void shouldRemoveItemOnDemand() { WeakCache cache = new WeakCache(new PerpetualCache("default")); cache.putObject(0, 0); assertNotNull(cache.getObject(0)); cache.removeObject(0); assertNull(cache.getObject(0)); }
Example 3
Source File: WeakCacheTest.java From mybaties with Apache License 2.0 | 5 votes |
@Test public void shouldFlushAllItemsOnDemand() { WeakCache cache = new WeakCache(new PerpetualCache("default")); for (int i = 0; i < 5; i++) { cache.putObject(i, i); } assertNotNull(cache.getObject(0)); assertNotNull(cache.getObject(4)); cache.clear(); assertNull(cache.getObject(0)); assertNull(cache.getObject(4)); }
Example 4
Source File: WeakCacheTest.java From mybatis with Apache License 2.0 | 5 votes |
@Test public void shouldDemonstrateObjectsBeingCollectedAsNeeded() { final int N = 3000000; WeakCache cache = new WeakCache(new PerpetualCache("default")); for (int i = 0; i < N; i++) { cache.putObject(i, i); if (cache.getSize() < i + 1) { //System.out.println("Cache exceeded with " + (i + 1) + " entries."); break; } } assertTrue(cache.getSize() < N); }
Example 5
Source File: WeakCacheTest.java From mybatis with Apache License 2.0 | 5 votes |
@Test public void shouldRemoveItemOnDemand() { WeakCache cache = new WeakCache(new PerpetualCache("default")); cache.putObject(0, 0); assertNotNull(cache.getObject(0)); cache.removeObject(0); assertNull(cache.getObject(0)); }
Example 6
Source File: WeakCacheTest.java From mybatis with Apache License 2.0 | 5 votes |
@Test public void shouldFlushAllItemsOnDemand() { WeakCache cache = new WeakCache(new PerpetualCache("default")); for (int i = 0; i < 5; i++) { cache.putObject(i, i); } assertNotNull(cache.getObject(0)); assertNotNull(cache.getObject(4)); cache.clear(); assertNull(cache.getObject(0)); assertNull(cache.getObject(4)); }