Lucene.Net 入门资源?
我正在构建一个简单的网站,允许用户发布文本内容,并且我想在发布文本内容时将其添加到搜索索引中,以便我的网站搜索是最新的。据我所知,Lucene.NET 是一个很好的全文搜索框架。不过,我发现关于如何使用它的示例很少。谁能发布一些学习 Lucene 的好参考资料?
I'm building a simple site that allows users to post text content and I want to add it to a search index as it gets posted, so my site search is up to date. From what I can tell Lucene.NET is a good full text search framework. I've found very few examples of how to use it though. Can anyone post some good references for learning about Lucene?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您想在 Windows Azure 上使用 Lucene.NET,您可以查看我的博客文章,了解如何使其与最新的 Azure SDK 配合使用。很多人在实现此功能时遇到问题,因此我解决了该问题并写了一篇有关它的文章:http://leoncullens.nl/post/2012/11/18/Full-Text-Search-on-Azure-with-LuceneNET.aspx
If you want to use Lucene.NET on Windows Azure you can check out my blog post on how to get it working with the latest Azure SDK. A lot of people have problems getting this working, so I fixed the problem and wrote an article about it: http://leoncullens.nl/post/2012/11/18/Full-Text-Search-on-Azure-with-LuceneNET.aspx
一些链接:
关键点是任何有关 Lucene 的 Java 材料都非常适合 Lucene.net 。
但我应该注意,从您对需求的描述来看, Solr 可能更适合。
华泰
Some links:
The key point is that any Java material for Lucene is great for Lucene.net.
I should note though, that from your description of requirements, Solr might be a better fit.
HTH