Lucene.net 和 google snippet 类似
我需要创建一个搜索引擎,通过片段动态提取全文搜索结果(如 Google)。我读过一些谈论 Lucene.net 的帖子。 这是一个很棒的产品(我需要 C# 解决方案),但它也有总结功能,例如 Sql Server 完整搜索。
我已经寻找解决方案,但没有找到任何解决方案。一些想法? 我已经将如此多的 blob 对象放入 sql server 中,我必须创建一个良好的搜索,例如 Google。
I need to create a search engine that dynamically extracts full text search results with a snippet (like Google). I have read some posts talking about Lucene.net.
It's a great product (I need c# solution) but does it have summarizing features too, like Sql Server full search.
I have searched for a solution but I didn't find any. Some ideas?
I've put so many blob objecst into sql server and I must to create a good search, like Google.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Lucene 有一个名为 Lucene.Net 的 .Net 端口,
还有一个
Highlighter< Lucene.Net 的 /code> 类,可用于突出显示(创建摘要)搜索结果。请参阅:
Lucene has a .Net port called Lucene.Net
There is also a
Highlighter
class for Lucene.Net that can be used to highlight (create a summary) of search results. See: