开源缓存包EHCache全接触 - 编程入门网
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-06-15
0 # COMPANY FLX # PORJECT ehcache-demo ############################################################################# */ public class Demo { static CacheManager manager= new CacheManager(); /** *############################################################################## * * @DESCRIBE * @param args * @throws InterruptedException * *############################################################################## */ public static void main(String[] args) throws InterruptedException { String[] cacheNames = manager.getCacheNames(); System.out.println("響函議産贋双燕葎?"); for(int i=0;i<cacheNames.length;i++){ System.out.println("-- "+(i+1)+" "+cacheNames[i]); } Cache cache = manager.getCache("cache1"); Element element = new Element("key1", "value1"); cache.put(element); element = cache.get("key1"); Serializable value = element.getValue(); System.out.println("會双晒朔議峙葎?"+value.toString()); element = cache.get("key1"); Object value1 = element.getObjectValue(); System.out.println("隆會双晒議峙葎?"+value1.toString()); int elementsInMemory = cache.getSize(); System.out.println("誼欺産贋議斤?方楚?"+elementsInMemory); long elementsInMemory1 = cache.getMemoryStoreSize(); System.out.println("誼欺産贋斤?媼喘坪贋議方楚?"+elementsInMemory1); long elementsInMemory2 = cache.getDiskStoreSize(); System.out.println("誼欺産贋斤斤?媼喘甘徒議方楚?"+elementsInMemory2); int hits = cache.getHitCount(); System.out.println("誼欺産贋響函議凋嶄肝方?"+hits); int hits1 = cache.getMemoryStoreHitCount(); System.out.println("誼欺坪贋嶄産贋響函議凋嶄肝方?"+hits1); |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于开源缓存包EHCache全接触 - 编程入门网的所有评论