如何使用 Lucene.Net 索引和搜索业务实体?
我想知道如何使用 Lucene.NET 来索引和搜索我的业务实体。 我发现 NHibernate.Search 对于这个问题有很好的功能,但它仍然需要数据库。 我不需要数据库,我只想将所有数据存储在 Lucene.NET 的索引中。 我还看到像 Compass 这样的 java 框架可以轻松地完成这些工作,但它不是 .NET 库。
对象设计或框架有什么方法可以解决这个问题吗?
I would like to know how to use Lucene.NET for indexing and searching my business entities. I see NHibernate.Search has nice features for this issue, but it still needs DB. I don't need DB, I only want to store all data in my Lucene.NET's index. I also see java framework like Compass can do that stuff easily, but it's not .NET library.
Is there any ways for object designs or frameworks to solve this issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用此代码使用 Lucene.NET 来索引业务实体的快照..,
这对属性类型有明显的限制,需要错误检查,但可以让您了解如何实现此目的。
更新:另请参阅此项目 http://www.codeplex.com/linqtolucene
try this code to use Lucene.NET to index a snapshot of business entities..,
this has obvious limitations on type of properties and needs error checking but gives you a general idea of how to achieve this..
Update: Also look into this project http://www.codeplex.com/linqtolucene