JAVA開発メモ
EHCache のバックアップ差分(No.2)
 

[トップ|一覧|単語検索|最終更新|バックアップ|ヘルプ]




  #contents



  
  *NEWS

  --Added SelfPopulatingCacheManager to the constructs package.
  --Added a new diskExpiryThreadIntervalSeconds configuration option to ehcache.xml, to allow tuning of the expiry thread per cache.
  --Added a new persistent option for the DiskStore. When enabled, diskPersistent makes Caches persistent between JVM restarts. It enables very long held caches to be configured, useful for very expensive and/or long lived cache entries.
  --Improved code coverage. See clover coverage report.
  --Added a new diskExpiryThreadIntervalSeconds configuration option to ehcache.xml, to allow tuning of the expiry thread per cache.
  --Added a new persistent option for the DiskStore. When enabled, diskPersistent makes Caches persistent between JVM restarts. It enables very long held caches to be configured, useful for very expensive and/or long lived cache entries.
  --Improved code coverage. See clover coverage report.
  --New checkstyle rules, using checkstyle 3.4. Many additional checks have been added and code cleanups done to make ehcache more standards compliant and understandable than ever.
  



  



   CacheManager manager = CacheManager.getInstance();

   URL url = getClass().getResource("/package/anothername.xml");
   CacheManager manager = CacheManager.create(url);

   CacheManager manager = CacheManager.create("src/config/ehcache.xml");

   manager.shutdown();
  

   Cache cache = new Cache("test", 1, true, false, 5, 2);

   Cache cache = manager.getCache("sampleCache1");

   // Cache(String name, int maximumSize, boolean overflowToDisk,
   //  boolean eternal, long timeToLiveSeconds, long timeToIdleSeconds,
   //  boolean diskPersistent, long diskExpiryThreadIntervalSeconds)

   Cache testCache = new Cache("test", 1000, true, false, 500, 200, false, 120);
   manager.addCache(cache);

   cache.removeAll();
  


   Element element = new Element("key1", "value1");
   cache.put(element);

   Element element = cache.get("key1");

   cache.remove("key1");
  

   <ehcache>
     <diskStore path="java.io.tmpdir"/>
     <defaultCache
         maxElementsInMemory="10000"
         eternal="false"
         timeToIdleSeconds="120"
         timeToLiveSeconds="120"
         overflowToDisk="true"
         />
     <cache name="my.package.Class"


         maxElementsInMemory="10000"
         eternal="false"

         timeToIdleSeconds="300"

         timeToLiveSeconds="600"
         overflowToDisk="true"
         />
   </ehcache>















  

トップ 一覧 検索 最終更新 バックアップ   ヘルプ   最終更新のRSS

Modified by MT22(Moriwaki Takashi)

"PukiWiki" 1.3.7 Copyright © 2001,2002,2003 PukiWiki Developers Team. License is GNU/GPL.
Based on "PukiWiki" 1.3 by sng
Powered by PHP 7.4.33

HTML convert time to 0.003 sec.