NHibernate.Search 索引重建
如何使用 NHibernate.Search 重建 Lucene.NET 索引?
谢谢。
How can i rebuild Lucene.NET Index using NHibernate.Search ?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
IFullTextSearchSession 中有一个 Index 方法,该方法将强制对实体进行索引。因此,您只需要检索所有对象,然后对它们调用索引即可。
There is an Index method off of the IFullTextSearchSession that will force and index of an entity. So you just need to retrieve all of the objects and then call index on them.
这是一个例子:
Here is an example: