作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Ehcache文档(https://www.ehcache.org/documentation/2.8/configuration/cache-size.html)将maxEntriesLocalHeap
描述为:
The maximum number of cache entries or bytes a cache can use in local heap memory, or, when set at the CacheManager level (maxBytesLocalHeap only), a local pool available to all caches under that CacheManager. This setting is required for every cache or at the CacheManager level.
<cache
name="myCache"
maxEntriesLocalHeap="5000"
eternal="false"
overflowToDisk="false"
timeToLiveSeconds="10000"
memoryStoreEvictionPolicy="FIFO" />
最佳答案
是的。
maxEntriesLocalHeap强制措施只会计算您存储在缓存中的键/值对的数量。作为用户,您应完全了解保留每个条目的堆开销,并确保配置的Java堆可以应付此负载。
关于spring - 如何在ehcache中配置maxEntriesLocalHeap?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22892170/
我是一名优秀的程序员,十分优秀!