use of org.apache.ibatis.cache.decorators.LoggingCache in project mybatis-3 by mybatis.
the class ScheduledCacheTest method shouldRemoveItemOnDemand.
@Test
public void shouldRemoveItemOnDemand() {
Cache cache = new PerpetualCache("DefaultCache");
cache = new ScheduledCache(cache);
((ScheduledCache) cache).setClearInterval(60000);
cache = new LoggingCache(cache);
cache.putObject(0, 0);
assertNotNull(cache.getObject(0));
cache.removeObject(0);
assertNull(cache.getObject(0));
}
Aggregations