Package net.sf.ehcache

Examples of net.sf.ehcache.Cache.evictExpiredElements()


    public void run() {
      while(run) {
        Cache cache = CacheManager.getInstance().getCache(cacheName);
        if(cache != null) {
          cache.evictExpiredElements();
        }
        try {
          Thread.sleep(1000*seconds);
        } catch(Exception e) {
        }
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.