如果事务回滚,CompassGps 会回滚吗?
如果CompassGps镜像与Hibernate一起使用,如果数据库事务回滚会发生什么?对索引的更改是否会回滚(假设索引的文件存储)?
似乎如果 Lucene 索引存储在磁盘上,它就不会自动回滚,除非 Compass 足够智能来为您处理这个问题。
FWIW,我正在使用 Grails 的 Searchable 插件。
If CompassGps mirroring is used with Hibernate, what happens if the database transaction rolls back? Will the changes to the index be rolled back (assuming file store for the index)?
It seems like if the Lucene index is stored on the disk it won't be automatically rolled back, unless Compass is smart enough to handle that for you.
FWIW, I am using the Searchable plugin with Grails.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Compass/Lucene 端不会出现任何回滚的情况。 Compass 注册事件监听器并作用于插入、删除和更新来更新 Lucene 索引。如果事务回滚,那么 Compass 将无法获取这些事件。
There wouldn't be anything to roll back on the Compass/Lucene end. Compass registers event listeners and acts on inserts, deletes and updates to update the Lucene index. If a transaction rolled back then Compass wouldn't get those events.