ehcache中详解参数

为了搞清楚timeToLiveSeconds和timeToIdleSeconds这两个参数的作用有必要
shiro-ehcache.jar中ehcache.xml的解释


  • maxElementsInMemory
    • 内存中最大的元素个数,如果超过最大数量,overflowToDisk决定是否存储到磁盘上
  • eternal
    • 是否永久有效。
    • 如果eternal=true,那么timeToLiveSeconds、timeToIdleSeconds失效。
    • 如果eternal=false,那么timeToLiveSeconds、timeToIdleSeconds才起作用。
  • overflowToDisk
    • 当内存中达到最大元素数量?为true则存储到 磁盘上,否则?根据memoryStoreEvictionPolicy决定清除策略
  • timeToIdleSeconds
    • 最大空闲时间,单位为秒,元素过期前最大的访问间隔,0为永久空闲,在eternal=false时,有效。
  • timeToLiveSeconds
    • 最大存活时间,单位为秒,创建时间和失效时间的间隔,0为永久空闲,在eternal=false时,有效。
  • diskPersistent
    • jvm重启时,是否保留磁盘存储块,默认不保留
  • diskExpiryThreadIntervalSeconds
    • check磁盘块过期的间隔时间,默认2分钟
  • memoryStoreEvictionPolicy
    • 内存存储清除策略,当达到最大maxElementsInMemory限制时采用的策略,有 Least Recently Used (specified as LRU)、First In First Out (specified as FIFO)、Less Frequently Used,默认是LRU

你可能感兴趣的:(ehcache)