EhCache的BootstrapCacheLoader是否注意缓存设置?
Does EhCache's BootstrapCacheLoader pay attention to cache settings?
我已经使用 this example 在 EhCache 中实现了缓存预热。 EhCache 的 BootstrapCacheLoader 运行 是在每次调用时重新加载缓存,还是在 运行ning 之前检查缓存数据是否过时?
BootstrapCacheLoader
的重点是在应用程序启动时 运行 将 已知或已识别的 热键放入内存中。
如果你多次 运行 会发生什么取决于它的实现。
现在,如果您想要的是快速刷新条目,则可能需要查看 documentation for RefreshAheadCache
or ScheduledRefreshCacheExtension
。
我已经使用 this example 在 EhCache 中实现了缓存预热。 EhCache 的 BootstrapCacheLoader 运行 是在每次调用时重新加载缓存,还是在 运行ning 之前检查缓存数据是否过时?
BootstrapCacheLoader
的重点是在应用程序启动时 运行 将 已知或已识别的 热键放入内存中。
如果你多次 运行 会发生什么取决于它的实现。
现在,如果您想要的是快速刷新条目,则可能需要查看 documentation for RefreshAheadCache
or ScheduledRefreshCacheExtension
。