Ehcache學習(八)執行個體二

來源:互聯網
上載者:User

Ehcache使用執行個體(二)

Cache使用

l 得到一個Cache引用

獲得一個sampleCache1的引用,從官方下載ehcache.xml,在ehcache.xml中已經有配置好的緩衝,大家直接使用就可以,或是做測試,如果說真正使用的時候,最後自己手動設定一個比較好。

Cache cache = manager.getCache(“sampleCache1”);

l 使用Cache

Put一個Element到cache中

Cache cache = manager.getCache(“sampleCache1”);

Element element = new Element(“key1”,”value1”);

cache.put(element);

update一個element時,只要在構造element時將相同的key傳入,在調用cache.put(element),這是Ehcache會根據key到緩衝中找到對應的element並做更新。

Cache cache = manager.getCache(“sampleCache1”);

Cache.put(new Element(“key1”, “value1”));

//更新element

Cache.put(new Element(“key1”, “value2”));

根據key取得對應element的序列化value值

Cache cache = manager.getCache(“sampleCache1”);

Element element = cache.get(“key1”);

Serializable value = element.getValue();

根據key取得對應element的非序列化value值

Cache cache = manager.getcache(“samplecache1”);

Element element = cache.get(“key1”);

Ojbect value = element.getObjectValue();

http://blog.csdn.net/mgoann/archive/2009/04/22/4099190.aspx

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.