只是想知道将 maxElementsInMemory 设置为远高于实际使用的值是否会对性能产生影响?例如,最多 10,000 个并且仅使用 100 个。
ehcache.xml
<defaultCache
eternal="false"
overflowToDisk="false"
maxElementsInMemory="10000"
timeToIdleSeconds="7200"
timeToLiveSeconds="0"/>
上下文:我将 ehcache 与休眠一起使用,并且我希望缓存表的所有记录(所有实体)。从一个客户到另一个客户,该表中的记录数会有所不同,因此很难设置精确的最大值。
谢谢!
马克