Reputation: 377
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.
Upvotes: 0
Views: 617
Reputation: 86729
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:
Upvotes: 1