spring 整合 ehcache 实现dao缓存

spring 整合 ehcache 实现dao缓存
Ehcache在很多项目中都出现过,用法也比较简单。一般的加些配置就可以了,而且Ehcache可以对 页面、对象、数据进行缓存 ,同时支持 集群/分布式缓存 。如果整合Spring、Hibernate也非常的简单, Spring对Ehcache的支持也非常好。EHCache支持内存和磁盘的缓存 支持LRU、LFU和FIFO多种淘汰算法, 支持分布式的Cache ,可以作 为Hibernate的缓存插件 。同时它也能提供 基于Filter的Cache, 该Filter可以缓存响应的内容并采用Gzip压缩提高响应速度。


http://blog.csdn.net/hz_chenwenbiaotmb/article/details/5755450

http://blog.csdn.net/hz_chenwenbiaotmb/article/details/5755630


http://www.cnblogs.com/hoojo/archive/2012/07/12/2587556.html

你可能感兴趣的:(spring 整合 ehcache 实现dao缓存)