引用: http://www.open-open.com/lib//view/open1342696876495.html 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,timeT oLiv e=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级别的分布式缓存]
这些都是后话.以后有计划继续实践.