我的日常

登录/注册
您现在的位置:论坛 盖世程序员(我猜到了开头 却没有猜到结局) 盖世程序员 > SSH2搭建框架如何配置hibernate 缓存
总共48087条微博

动态微博

查看: 3749|回复: 0

SSH2搭建框架如何配置hibernate 缓存

[复制链接]

45

主题

0

听众

142

金钱

三袋弟子

该用户从未签到

跳转到指定楼层
楼主
发表于 2014-04-20 17:48:55 |只看该作者 |倒序浏览

1、首先设置EhCache,建立配置文件ehcache.xml,默认的位置在class-path,可以放到你的src目录下:

<?xml version="1.0" encoding="UTF-8"?># x+ A% u5 w+ b( |8 i" B8 N6 d' E* z
<ehcache>3 p' B) {: p3 r8 D8 ?
 <diskStore path="java.io.tmpdir"/>
4 P& }( r& f- g& F) P  <defaultCache7 |: G. q, o& M+ G- i4 J2 \
   maxElementsInMemory="10000" <!-- 缓存最大数目 -->" Y- K' s' m4 E' ^
   eternal="false" <!-- 缓存是否持久 -->

   overflowToDisk="true" <!-- 是否保存到磁盘,当系统当机时-->

   timeToIdleSeconds="300" <!-- 当缓存闲置n秒后销毁 --># o) |# {( b* c
   timeToLiveSeconds="180" <!-- 当缓存存活n秒后销毁-->, m) l# z) H7 `
   diskPersistent="false"
7 d% |, B, b/ K1 i! _* A   diskExpiryThreadIntervalSeconds= "120"/>
! ]' C/ N' a& ?+ D! z! V, w</ehcache>

  2、在hibernate配置文件中设置:

<!-- 设置Hibernate的缓存接口类,这个类在Hibernate包中 -->% ~0 T3 `, C& {
<property name="cache.provider_class">org.hibernate.cache.EhCacheProvider</property>0 Q0 G: F/ F, R" A6 J8 n9 v1 }
 <!-- 是否使用查询缓存 -->

 <property name="hibernate.cache.use_query_cache">true</property>
( R* f5 @( y3 d2 o3 W  如果使用spring调用Hibernate的sessionFactory的话,这样设置:
) c) Q; ?  Q* o, v  <!--HibernateSession工厂管理 -->

   <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
/ r; A* V. e# D' z6 G+ c   <property name="dataSource">
9 N& e' c, Z6 K5 \( q    <ref bean="datasource" />  b% t/ g1 t0 N6 S3 P
   </property>
2 L- U# ~8 k' a& W, B   <property name="hibernateProperties">6 S9 Q, n- g) M' Q4 \
   <props>! w) B( [6 Q, Z, l, X: C$ a; V
    <prop key="hibernate.dialect">org.hibernate.dialect.Oracle9Dialect</prop>" s) E% |+ g& B) I) P- ~
     <prop key="connection.provider_class">org.hibernate.connection.C3P0ConnectionProvider</prop>
# _5 \: L0 Q! p    <prop key="hibernate.show_sql">true</prop>
2 K, G# R$ Q* O/ s2 N# y    <prop key="hibernate.cache.use_query_cache">true</prop>
" N9 H0 }" ~1 L6 ^4 ], j    <prop key="hibernate.cache.provider_class">org.hibernate.cache.EhCacheProvider</prop>* \9 y7 Z$ l1 F( v5 f
   </props>$ |8 R1 ?) k! M3 b
 </property>% W5 P+ b; D, S% b; u$ `
 <property name="mappingDirectoryLocations">! O; T& R4 w# V8 Q
  <list>
+ H9 F) |5 q  ]; Y& H   <value>/WEB-INF/classes/cn/rmic/manager/hibernate/</value>$ V$ a, `1 p" W  S' M
  </list>) K8 p! C/ v5 G1 r
 </property>& U- U+ Q/ @. p
</bean>

  说明一下:如果不设置“查询缓存”,那么hibernate只会缓存使用load()方法获得的单个持久化对象,如果想缓存使用findall()、list()、Iterator()、createCriteria()、createQuery()等方法获得的数据结果集的话,就需要设置hibernate.cache.use_query_cache true 才行

  3、在Hbm文件中添加<cache usage="read-only"/>


; ~! W3 }- U; [8 W6 G* N2 q! h1 i  4、如果需要“查询缓存”,还需要在使用Query或Criteria()时设置其setCacheable(true);属性

  5、实践出真知,给一段测试程序,如果成功的话第二次查询时不会读取数据库

package cn.rmic.hibernatesample;

import java.util.List;

import org.hibernate.CacheMode;
, |0 }: `+ k* S6 k9 f5 e/ M9 Eimport org.hibernate.Criteria;
( r! F1 ^4 y- z  m  a8 k5 Uimport org.hibernate.Query;- k5 g* b. F2 v: z9 Z
import org.hibernate.Session;

import cn.rmic.hibernatesample.hibernate.HibernateSessionFactory;0 d2 e. n' Y% g# _7 R) F/ H
import cn.rmic.manager.po.Resources;

public class testCacheSelectList ...{

 public static void main(String[] args) ...{5 ]) A, Y/ H" [# T0 B* G* V, b) ?
  Session s=HibernateSessionFactory.getSession();
9 k& B$ Y. @- `' h1 J  Criteria c=s.createCriteria(Resources.class);& v8 j! R1 E# m( S
  c.setCacheable(true);8 q' E1 ^% _) Q" M" {+ {
  List l=c.list();

  Resources resources=(Resources)l.get(0);
+ D2 N2 E5 x! o4 ~$ z0 S7 r! @  System.out.println("-1-"+resources.getName());
+ T  P! J9 |# R+ v$ C; {' R& n  F  HibernateSessionFactory.closeSession();

$ k! O& W( ~5 ]: d, [. B/ F. |; n
  try ...{' K# B7 J: A: x6 S& |4 `
   Thread.sleep(5000);: e( Y! b0 u8 |, l, G) G
  } catch (InterruptedException e) ...{5 k8 g! @  ~# {' ~5 x% w9 t$ O, W/ z
   // TODO Auto-generated catch block
6 e- x+ V* c* G9 e4 U   e.printStackTrace();
2 R% K5 O$ M- l6 x  R  }
: w- E" n9 B0 Q0 \1 {9 g7 |  s=HibernateSessionFactory.getSession();9 x" s6 x9 p' h' D9 c) [$ c' O" L
  c=s.createCriteria(Resources.class);
( H9 n7 v4 W; B8 \; a  c.setCacheable(true);2 y, ?9 h1 `9 t3 x
  l=c.list();
$ c) U2 ^3 W: ^3 B& k  resources=(Resources)l.get(0);5 B8 P1 S1 X6 F5 h. x% ?8 x
  System.out.println("-2-"+resources.getName());9 N1 r& i9 P3 ?
  HibernateSessionFactory.closeSession();2 M! G, x2 }) |- @3 d% B/ Q: J6 b
 }( u6 F; t: {8 p* l  Y
}


$ }3 l$ ^5 J3 w1 m( \

1. 在Hibernate配置文件中设置:
1 z7 k, U) w: t1 E. a* p   

<!-- Hibernate SessionFactory -->
, ?' ~0 Q1 D6 ^& W: K4 ?    <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
8 S2 p9 N0 I; I: q/ C0 X) b        <property name="dataSource" ref="dataSource"/>
; X& V8 \- Q( ?3 `3 h$ m& B7 N        <property name="mappingResources">
2 T4 V" y* G" b2 t3 c        <list>% O0 J8 T0 G% }  G
            <value>com/ouou/model/Videos.hbm.xml</value>  % A3 b' `7 P% q1 \
         </list>3 s& G( y0 t- M, A7 v5 {) e5 T
         </property>
3 R0 L' r! Y5 h( [9 P; S        <property name="hibernateProperties">
  h, C) M; Z+ O! n$ q2 m            <props>8 y5 ^1 K, w# N) k; `  f: [$ c
                <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>- f0 a4 L0 l! E% G- o2 G
                <prop key="hibernate.current_session_context_class">thread</prop>
& k9 w7 U. ^& l- _* j, G                <prop key="hibernate.cglib.use_reflection_optimizer">false</prop>- s7 n0 R2 p/ Q, \% O3 {: Y- I2 f* S
                <prop key="hibernate.query.substitutions">true 'Y', false 'N'</prop>
0 H+ K) I9 w% R- H$ V2 K/ g) A                <!--add ehcache-->
, r. Z5 }' y4 c                <prop key="hibernate.cache.provider_class">org.hibernate.cache.EhCacheProvider</prop>2 n9 B% f$ W# E; B1 p
                <prop key="hibernate.cache.use_query_cache">false</prop><!-- 是否使用查询缓存 -->. W  \/ U; _' g5 g9 R
                <!--
) i8 t  m$ O4 o3 i! _3 b& ^                <prop key="hibernate.cache.provider_configuration_file_resource_path">/ehcache.xml</prop>1 v$ ~7 P% H% x2 U
                <prop key="hibernate.show_sql">true</prop>  e8 a) I8 C+ a' a: E0 D( o& n6 L
                -->. e' b1 ?" K" C
                <!--<prop key="hibernate.transaction.auto_close_session">true</prop>-->
1 J! L3 m* k. {/ N- |' m* q1 p' U4 q9 D                <prop key="connection.provider_class">org.hibernate.connection.C3P0ConnectionProvider</prop>
0 o  ]6 i( ?* e: N3 F# @                <!-- Create/update the database tables automatically when the JVM starts up2 f0 B) g: s5 [& C8 X$ O
                 <prop key="hibernate.hbm2ddl.auto">update</prop> -->" \: Y9 @2 D  Z: L# z
                <!-- Turn batching off for better error messages under PostgreSQL -->
: G8 M! }5 O- E! x, b& ~                <prop key="hibernate.jdbc.batch_size">25</prop>
$ v7 c% S! H: C$ i6 B  [3 _, Q9 Z6 ?% |1 C                <!--
( R, w" |" V+ g4 i                <prop key="hibernate.connection.pool_size">10</prop>9 G9 z. m" _, W  d9 A7 v
                -->1 R( y- {. w4 R" U( F) o$ N9 e
            </props>
7 R: Y* y# ?' K, ?        </property>( m% q. h& _9 B* y& ?0 R; `, c: G, d
    </bean>

    如果不设置“查询缓存”,那么hibernate只会缓存使用load()方法获得的单个持久化对象,如果想缓存使用findall()、 list()、Iterator()、createCriteria()、createQuery()等方法获得的数据结果集的话,就需要设置hibernate.cache.use_query_cache true 才行

2.首先设置EhCache,建立配置文件ehcache.xml,默认的位置在class-path,可以放到你的src目录下:


; p7 G0 T8 Z' s. i$ G <ehcache>

    <!-- Sets the path to the directory where cache .data files are created.

     If the path is a Java System Property it is replaced by, P, }: r, Y2 V. A
     its value in the running VM., _8 b; Q+ l9 P
     The following properties are translated:. X  }' {+ [% q6 x, m; G! g
     user.home - User's home directory1 G' P3 a. C/ N' s! o4 K
     user.dir - User's current working directory) ^3 R) _5 x( W5 L1 w# e
     java.io.tmpdir - Default temp file path -->, \* z( ^9 P( L0 l/ Q
     <!--<diskStore path="java.io.tmpdir"/>-->
6 L( p& n9 Q/ i4 Y4 o     <diskStore path="/data/ehcache"/>

    <!--Default Cache configuration. These will applied to caches programmatically created through' a- M* C( x( v' J- R5 ^
        the CacheManager.

        The following attributes are required:

        maxElementsInMemory            - Sets the maximum number of objects that will be created in memory0 f" |5 g! G& f( ~
        eternal                                     - Sets whether elements are eternal. If eternal,  timeouts are
- M( ]; k0 j5 X4 ^                                                            ignored and the element is never expired.! g  f6 H& n6 s$ i5 i8 O& ~, S
        overflowToDisk                      - Sets whether elements can overflow to disk when the in-memory cache1 \; _% r1 r3 l+ D$ I
                                                        has reached the maxInMemory limit.

        The following attributes are optional:* Z, D' X! }) A8 c, W/ V6 g% S# T
        timeToIdleSeconds            - Sets the time to idle for an element before it expires.5 Q0 c8 M2 f8 E: X# b+ Z
                                                        i.e. The maximum amount of time between accesses before an- p7 P) M! q* ]* ?( h6 M: N# J
                                                        element expires Is only used if the element is not eternal.9 D* A$ b2 `2 D
                                                        Optional attribute. A value of 0 means that an Element can idle
! J* T2 N8 x5 L5 Q                                                        for infinity.The default value is 0.
- r/ [# ?9 n- Y- o8 E% n        timeToLiveSeconds              - Sets the time to live for an element before it expires.
; a5 [# }( R+ g" i0 P  e                                                         i.e. The maximum time between creation time and when an element5 X1 @% K5 ]* @' |4 A4 }
                                                         expires.  Is only used if the element is not eternal.
# p# I# e% l0 i2 a                                                         Optional attribute. A value of 0 means that and Element can live1 {% Z( L5 Y9 Z( P, g7 @# a
                                                         for infinity.
; m1 |: ]! g+ C7 S5 @9 W4 A: V                                                        The default value is 0.
' z! t# s( v* s* W        diskPersistent                           - Whether the disk store persists between restarts of the Virtual
$ g9 m  E, p/ B$ P) }; m' p                                                             Machine.% [2 [+ B9 n. l+ q
                                                         The default value is false.- [* O6 i3 h( Q8 E% w, D" q4 w
        diskExpiryThreadIntervalSeconds   - The number of seconds between runs of the disk expiry thread." ~% G1 M; m" H. z* b# F
                                                         The default value  is 120 seconds.
. x  Q( [- Z8 f5 P) x        -->

    <defaultCache  \2 n: A5 w9 G
        maxElementsInMemory="10000"
8 d" ]6 [) _( {) _, `! N, B. L        eternal="false"6 B& n6 O/ P3 ]- ^; U9 t2 |
        overflowToDisk="true"9 w  \0 L+ m! i; ~! u
        timeToIdleSeconds="120", h9 _, B" j. [) Y: k
        timeToLiveSeconds="120"
/ ~3 c0 [4 I' v0 t' l  G2 {        diskPersistent="false"
$ D3 d7 p) i" b1 b4 t# i2 P4 c        diskExpiryThreadIntervalSeconds="120"/>
- h3 R' E2 X% A  ~    <cache name="org.hibernate.cache.UpdateTimestampsCache" maxElementsInMemory="5000") i! A1 M: t& [+ `: A1 w( d
     eternal="true" overflowToDisk="true"/>3 D  R8 o0 `% f. z$ A# X- d* V
    <cache name="org.hibernate.cache.StandardQueryCache" maxElementsInMemory="5" eternal="false"' C% q, z' \3 f  U
    timeToLiveSeconds="120" overflowToDisk="true"/>3 F- f1 _! M) H, {1 j0 D6 P
    <cache name="userCache" maxElementsInMemory="100000" eternal="false" timeToIdleSeconds=
: P7 L: _  S  U# K8 Y        "600"    timeToLiveSeconds="600" overflowToDisk="false" diskPersistent="false"/>
0 q% S& Z6 t9 Q  E    <cache name="com.ouou.webapp.util.OuouMethodIntecepter" maxElementsInMemory="100000"
4 \2 ^4 W$ `1 m+ L4 D    eternal="false" timeToIdleSeconds="600" timeToLiveSeconds="600" overflowToDisk="false"- L( v! Y  u1 m0 B& Z) s. w. F6 t
    diskPersistent="false"/>) o# ^8 L  E/ t4 d* m
    <cache name="bbcode" maxElementsInMemory="100000" eternal="false" timeToIdleSeconds="600"
- i4 `7 m7 P/ H& C5 F4 J    timeToLiveSeconds="600"
% _6 Q! h& |8 S2 f" f! c    overflowToDisk="false" diskPersistent="false"/>$ c$ Y9 Z! @9 [+ a7 n+ l
    <cache name="com.ouou.model.Videos" maxElementsInMemory="10000"  eternal="false"
+ R# J8 h7 {$ w/ C! f2 D& Q- t    overflowToDisk="false" timeToIdleSeconds="120" timeToLiveSeconds="120" diskPersistent="false"/>8 a# a& M6 T2 ]  E
    <cache name="com.ouou.model.Tags" maxElementsInMemory="10000"  eternal="false"
9 l0 N, B4 y, T$ ]    overflowToDisk="false" timeToIdleSeconds="120" timeToLiveSeconds="120" diskPersistent="false"/>2 a9 b- `# M# G5 q0 c/ Y8 w2 R" f
</ehcache>

以com.ouou.model.Videos为例子
$ _' |, U  X" d: Y在Videos.hbm.xml中配置:' Y3 x: L- s- j
<class name="Videos" table="TEST" lazy="false">( ?4 e4 _: E- L
  <cache usage="read-write" region="ehcache.xml中的name的属性值"/>注意:这一句需要紧跟在class标签下面,其他位置无效。% C9 Q% O& b+ |' ]* _9 Y
hbm文件查找cache方法名的策略:如果不指定hbm文件中的region="ehcache.xml中的name的属性值",则使用name名为com.ouou.model.Videos的cache,
9 j: ^7 m0 I7 j' h- z9 B- ~如果不存在与类名匹配的cache名称,则用defaultCache。
5 G2 E# R7 w1 U/ @7 h8 w9 m如果Videos包含set集合,则需要另行指定其cache
9 t1 K3 e, o. A$ P例如Videos包含Tags集合,则需要! J  E8 H: T, L. {% l
添加如下配置到ehcache.xml中  K% Z7 b0 F: O+ j' C2 }& ?( h! H
<cache name="com.ouou.model.Tags"
0 F# Y) W' ^6 k, q        maxElementsInMemory="10000" eternal="false" timeToIdleSeconds="120"" X! f! C: E5 o3 j: w. A
        timeToLiveSeconds="120" overflowToDisk="false" />; ?5 _% S. i" O7 p; o& V
另,针对查询缓存的配置如下:
/ f! W5 S9 N- W0 ]( i1 w( M* m<cache name="org.hibernate.cache.UpdateTimestampsCache"% V. P* V) i% r9 }2 n6 S
        maxElementsInMemory="5000"
: a% D5 p8 s6 t0 k" U: ~        eternal="true"  O' {7 P- N- l2 ~0 p9 a
        overflowToDisk="true"/>/ H: T/ ?$ m: a& n) ]5 p
<cache name="org.hibernate.cache.StandardQueryCache"% x/ H6 s$ w  z5 J
        maxElementsInMemory="10000"2 a* B" W; ^! A! \
        eternal="false"
3 P- V  e/ N) {$ f+ @        timeToLiveSeconds="120"
& j8 g/ ?' M7 P8 |6 z        overflowToDisk="true"/>

3、 选择缓存策略依据:

<cache  usage="transactional|read-write|nonstrict-read-write|read-only" (1)/>
8 w$ h! A1 h; Pehcache不支持transactional,其他三种可以支持。3 w8 R/ m0 K+ s
read-only:无需修改, 那么就可以对其进行只读 缓存,注意,在此策略下,如果直接修改数据库,即使能够看到前台显示效果,
! P9 w1 z2 Z& \% v但是将对象修改至cache中会报error,cache不会发生作用。另:删除记录会报错,因为不能在read-only模式的对象从cache中删除。' J$ ]! \% b( h; v
read-write:需要更新数据,那么使用读/写缓存 比较合适,前提:数据库不可以为serializable transaction isolation level
* O3 A( A& m/ G4 m(序列化事务隔离级别)
9 c  B- v6 T, D8 {+ D( \, s: mnonstrict-read-write:只偶尔需要更新数据(也就是说,两个事务同时更新同一记录的情况很不常见),也不需要十分严格的事务隔离,
) S) E! \1 Y) f' u* e7 P那么比较适合使用非严格读/写缓存策略。

4、 调试时候使用log4j的log4j.logger.org.hibernate.cache=debug,更方便看到ehcache的操作过程,主要用于调试过程,实际应用发布时候,请注释掉,以免影响性能。

5、 使用ehcache,打印sql语句是正常的,因为query cache设置为true将会创建两个缓存区域:一个用于保存查询结果集 (
2 w( @# ~8 k) S8 E; e3 Z2 Sorg.hibernate.cache.StandardQueryCache);另一个则用于保存最近查询的一系列表的时间戳(org.hibernate.cache.UpdateTimestampsCache)。" z3 M+ R! `+ _3 e
请注意:在查询缓存中,它并不缓存结果集中所包含的实体的确切状态;它只缓存这些实体的标识符属性的值、以及各值类型的结果。
* Q4 `8 W$ c( P( l4 v" M( K需要将打印sql语句与最近的cache内容相比较,将不同之处修改到cache中,所以查询缓存通常会和二级缓存一起使用。


4 T. K3 @2 R$ P, G  }/ F0 |9 y

Ehcache的配置说明


! m% H8 y# y+ R, M) e1 o7 G, @<ehcache>
$ m* ^. a/ \( M$ f* X; F% {1 W<!--
8 W: E% E* u7 r+ V磁盘存储配置:# m9 Y, @4 k$ o5 B8 _/ F
用来指定缓存在磁盘上的存储位置。可以使用JavaVM环境变量(user.home, user.dir, java.io.tmpdir)
1 ]7 ^9 u2 e6 S. {* m* G-->9 T6 C% W( v. K7 ^1 b7 K: F
<diskStore path = "/var/apps/cache/" />+ ?$ E" p" |2 }8 G1 q& E$ F6 E
<!--+ r: G: j' D& y& p* y* i' T* u
指定CacheManagerEventListenerFactory,这个对象在缓存添加的时候会得到相应的通知) \. D. e$ g3 n- C+ L
CacheManagerEventListenerFactory的属性" `) b9 {4 m% A1 W8 ~  `8 X4 c
*class - CacheManagerEventListenerFactory的一个实现类
" c9 o$ \" R" a7 Y+ W, j*properties - CacheManagerEventListenerFactory的属性值,以逗号(,)分割多个属性% c/ C* V+ B6 ^
如果没有实现类被指定,则系统不创建CacheManager的监听器,没有默认值
0 ]( V) X* }, U, g. M) F) q$ l-->
$ J; o4 H; a6 h: d<cacheManagerEventListenerFactory class="" properties="" />8 W% c; g9 J+ p# V' \
<!--3 S1 G+ U  G* C- h0 w, \9 D
在进行分布式缓存的应用时候需要指定CacheManagerPeerProviderFactory,
' u9 @1 \) z# g) Z' S2 D用来生成CacheManagerPeerProvider的实例,以便和集群中的其他CacheManager通信。
3 ?$ V% c5 C: b; [! u* S. h*class -CacheManagerPeerProviderFactory的一个实现类
2 Z- x* Y8 P3 `2 ?, @% n* {*properties - CacheManagerPeerProviderFactory的属性值,以逗号(,)分割多个属性4 I2 F0 X2 x1 X7 a* p
Ehcache内建了2种基于RMI分布系统的通信策略:2 N9 P5 W" K6 l3 W& N
*automatic - 使用多播组。在一个节点加入或者推出集群的时候自动感应
3 f) U, m; ~" j6 n8 |*manual - 硬编码方式

目前的awf中不考虑分布缓存
# E4 [- z& K0 k. D-->
4 F. V& @) M" s) `" C: c<cacheManagerPeerListenerFactory class="" properties="" />
, @) a7 ?8 e. D1 K<!--; `: E" [+ I+ o" ?, d" E# g( ^
缓存配置。$ e8 P! t. r$ o" E2 Q
以下属性是必须的:
$ d8 i1 D7 B7 d5 p7 f2 D. Pname - cache的标识符,在一个CacheManager中必须唯一" G2 ?3 A0 [/ @( m7 K5 v+ @5 H% ?
maxElementsInMemory - 在内存中缓存的element的最大数目
; W1 D/ h/ L# ]  \maxElementsOnDisk - 在磁盘上缓存的element的最大数目- p  |% a! U. J& o8 P: X" E$ c
eternal - 设定缓存的elements是否有有效期。如果为true,timeouts属性被忽略
% s) c/ c: y$ S# A6 M' U9 ~$ B9 N6 NoverflowToDisk - 设定当内存缓存溢出的时候是否将过期的element缓存到磁盘上( w6 \+ T3 {' v  ]
以下属性是可选的:
* _2 S2 U2 G; a$ VtimeToIdleSeconds - 缓存element在过期前的空闲时间。默认为0,表示可空闲无限时间.
' c: ]/ o4 V( o' L0 H2 h        (如果指定了这个时间,是否在被hit的前超过了这个时间就会被remove?在内存缓存数目超限之前不会被remove)
8 ^6 y( F! Q5 t' LtimeToLiveSeconds - 缓存element的有效生命期。这个类似于timeouts,默认为0,不过期
" `+ C5 `3 [7 s( Z8 A        (是否通常情况下应该大于等于timeToIdleSeconds,小于会如何?idle时间也会减小和这个数值一样). {  q& p: r  s. V# ^
diskPersistent - 在VM重启的时候是否持久化磁盘缓存,默认是false。  O. ~' B: C$ @6 X
        (测试一下true的情况?重载vm的时候会从磁盘进行序列化到对象)
, Q  u" P+ D! H3 ]+ C4 H& cdiskExpiryThreadIntervalSeconds - 磁盘缓存的清理线程运行间隔,默认是120秒.8 X; M1 e% W7 r8 h; |
        (测试一下0的时候会如何)2 F8 i; y8 s* A. E0 V% h1 t. Q& T
memoryStoreEvictionPolicy - 当内存缓存达到最大,有新的element加入的时候,
: a; u$ t' A0 a+ L& e- R        移除缓存中element的策略。默认是LRU,可选的有LFU和FIFO

可对缓存中的element配置诸如监听器和加载器。Ehcahe内建了一些+ G+ j2 z3 I. u9 Q" E( h
*cacheEventListenerFactory - 监听缓存中element的put, remove, update和expire事件
( b+ f5 s& V1 e% \7 W*bootstrapCacheLoaderFactory - 启动时加载缓存的element$ ?# o; v* y9 M6 ]) a
每个用来做分布式缓存都必须设定element的事件监听器,用来在各个CacheManager节点复制消息。
8 K. l; ^: p' a5 X+ ?, aEhcache内建了基于RMI的实现 - RMICacheReplicatorFactory/ j. J, c1 L  \/ N
    <cacheEventListenerFactory class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
) F$ u: S  E+ |& z6 s/ y" k1 o        properties="replicateAsynchronouly=true,
0 B! K3 ~1 S7 n: X- V1 d        replicatePuts=true,
* v1 v: F2 B1 e1 H. g        replicateUpdates=true,4 _" L) Y# z/ h/ L6 v/ [( M
        replicateUpdateViaCopy=true,
# C: K' M. x% v6 s2 v        replicateRemovals=true" />

-->
! A9 t: ~' I! E- Q- g5 L) ~<cache .... />
& B/ b4 p9 i2 f<!--
4 M! l  d- y1 p" R. s6 E: t; f默认的Cache配置。用来实现CacheManager.add(String cacheName)创建的缓存" m0 h5 z$ R1 Q& R' H9 a8 ?, q1 U
-->
+ E7 o- q0 R2 ^- j6 s& Z. @<defaultCache maxElementsInMemory="10000" eternal="false"
& }7 f. j( z$ W) Q) {# J6 N5 K        timeToIdleSeconds="120" timeToLiveSeconds="120". y0 j! a' L. P5 c
        overflowToDisk="true" maxElementsOnDisk="1000000"
. @% }' R5 _8 U- N8 `9 e        diskPersistent="false" diskExpiryThreadIntervalSeconds="120"
# ~; k1 }0 l  k1 s2 D, k8 B' S! u        memoryStoreEvictionPolicy="LRU"' Y8 S+ K' A8 ]2 J4 E  m; Y
        />

</ehcache>


; Z* O) \+ t8 [, m

科帮网 1、本主题所有言论和图片纯属会员个人意见,与本社区立场无关
2、本站所有主题由该帖子作者发表,该帖子作者与科帮网享有帖子相关版权
3、其他单位或个人使用、转载或引用本文时必须同时征得该帖子作者和科帮网的同意
4、帖子作者须承担一切因本文发表而直接或间接导致的民事或刑事法律责任
5、本帖部分内容转载自其它媒体,但并不代表本站赞同其观点和对其真实性负责
6、如本帖侵犯到任何版权问题,请立即告知本站,本站将及时予与删除并致以最深的歉意
7、科帮网管理员和版主有权不事先通知发贴者而删除本文


JAVA爱好者①群:JAVA爱好者① JAVA爱好者②群:JAVA爱好者② JAVA爱好者③ : JAVA爱好者③

上班中。。。
快速回复
您需要登录后才可以回帖 登录 | 立即注册

   

关闭

站长推荐上一条 /1 下一条

发布主题 快速回复 返回列表 联系我们 官方QQ群 科帮网手机客户端
快速回复 返回顶部 返回列表