1. 程式人生 > >java ehcache 分散式快取配置例項

java ehcache 分散式快取配置例項

下面我們動手通過專案來實踐下吧.[RMI方式];

基本環境:A 分別建立兩個web專案,C1和C2 分別倒入echcache的jar包;

                    B 本例使用了兩個tomcat 分別部署C1和C2 

專案配置:C1配置

      A 

ehcache.xml [ path= src ]

                   <ehcache updateCheck="false" dynamicConfig="false">
   <diskStore path="java.io.tmpdir/ehcache"/>
   <cache name="cache"
       maxElementsInMemory="19"
        eternal="false"
       timeToIdleSeconds="120"
        timeToLiveSeconds="120"
       overflowToDisk="true">
      
     <cacheEventListenerFactory
        class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
        properties="replicateAsynchronously=true,replicatePuts=true, replicateUpdates=true,replicateUpdatesViaCopy=false,replicateRemovals=true"/>       
    </cache>
    
     <cacheManagerPeerListenerFactory class="net.sf.ehcache.distribution.RMICacheManagerPeerListenerFactory"
properties="hostName=192.168.10.114, port=40001,socketTimeoutMillis=2000"/>
     <cacheManagerPeerProviderFactory class="net.sf.ehcache.distribution.RMICacheManagerPeerProviderFactory"
       properties="peerDiscovery=manual,hostName=192.168.10.114,port=40002,rmiUrls=//192.168.10.114:40001/cache|//192.168.10.114:40002/cache,timeToLive=32" /> 
   <defaultCache
        maxElementsInMemory="1000"
        eternal="false"
        timeToIdleSeconds="120"
       timeToLiveSeconds="120"
       overflowToDisk="true"
     />
    
</ehcache>

         這樣就配置了192.168.10.114:40001和192.168.10.114:40002兩個ehcache快取例項 並且每當其中一個快取放生改變時通過在

properties="replicateAsynchronously=true,replicatePuts=true, replicateUpdates=true,replicateUpdatesViaCopy=false,replicateRemovals=true" 這些配置策略 可以同步反應到另一個快取中.從而達到分散式快取同步的效果.

B web.xml

<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns="http://java.sun.com/xml/ns/j2ee"
        xmlns:web="http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
        xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
        version="2.4">


<display-name>EhCache Cluster Demo</display-name>

<!-- listeners -->
<display-name>EhCache Cluster Demo</display-name>
<context-param>
<param-name>eccache</param-name>
<param-value>ehcache.xml</param-value>
</context-param>

<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>


</web-app>

C. test.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" pageEncoding="utf-8" %>
<%@page import="net.sf.ehcache.CacheManager"%>
<%@page import="net.sf.ehcache.Element"%>
<%@page import="net.sf.ehcache.Cache"%>
<h1>EhCache Cluster Tester</h1>

<%
CacheManager m =CacheManager.create();
Cache c = m.getCache("cache");
c.put(new Element("999", "yy"));
out.print(c.getSize()+"__"+c.getKeys().toString());
for(Object o:c.getKeys()){
Object v = c.get(o).getValue();
out.println(o+":"+v);
}
%>

C2配置同P1一致.區別如下:

<cacheManagerPeerListenerFactory class="net.sf.ehcache.distribution.RMICacheManagerPeerListenerFactory"
properties="hostName=192.168.10.114, port=40002,socketTimeoutMillis=2000"/>
    <cacheManagerPeerProviderFactory class="net.sf.ehcache.distribution.RMICacheManagerPeerProviderFactory"
        properties="peerDiscovery=manual,hostName=192.168.10.114,port=40001,rmiUrls=//192.168.10.114:40002/cache|//192.168.10.114:40001/cache,timeToLive=32" /> 

text.jsp 程式碼自定義.

測試方法:

分別啟動兩個專案:localhost:8001/c1 和localhost:8002/c2 其中C2第一次向自己的快取中放入內容.然後你訪問c1 ,C1則直接從自己的快取中讀取內容顯示.

你可以不斷改變程式碼進行測試.

***以上只為簡單實踐 對於其中引數的配置因地制宜的優化.如何任何錯誤。歡迎指正!

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

例外hibernate+ehcahce的配置基本同上 配置hibernate實用ehcache後 在程式碼和hbf配置檔案中可以指定使用快取[setCached(true)]

spring也提供了對ehcache的整合 .給予應用級別 可以快取呼叫方法的簽名(key).以及其放回結果(value)

ehcahe+Terracotta 可能提供了比較完整的解決方案[ Terracotta 收購了ehcache 而且本身Terracotta 提供了JVM級別的分散式快取]

這些都是後話.以後有計劃繼續實踐.