ibatis中的cachemodel什么时候重新查询数据库来获取更新的记录?
我第一次使用 ibatis 及其缓存模型,我似乎无法弄清楚缓存何时会填充新结果,这意味着我应用缓存模型的查询何时会再次执行以填充具有新结果的缓存。 是否需要某种命令才能再次获取结果还是会自动完成?任何帮助将不胜感激。
谢谢
I'm using ibatis and its cache model for the first time and i cant seem to figure out at what time will the cache be filled with new results, meaning whne will the query that i'm applying cache model on be executed again to fill the cache with new results.
Does it require some sort of command to get the results again or will it be done automatically? any help will be appreciated.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当刷新时,它将再次填充,这是通过 Fluchoninterval、flushOnupdate、flushoninsert 等事件完成的。
It will be filled again when it is flushed which is done over events such as fluchoninterval, flushOnupdate, flushoninsert.
除了上面的答案之外,您还可以定义刷新间隔。您可以以小时、分钟和分钟为单位定义冲洗间隔。秒并让刷新每隔 x 小时、y 分钟、z 秒间隔发生一次。
along with the above answer, you can also define flush intervals. You can define the flush interval in hours, mins & seconds and let the flush happening every x hours, y mins, z seconds interval.