0

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.

Matt Warren
  • 10,279
  • 7
  • 48
  • 63
Merlinox
  • 377
  • 3
  • 9

1 Answers1

1

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:

Community
  • 1
  • 1
Justin
  • 84,773
  • 49
  • 224
  • 367
  • Wonderful Kragen: I searched it for days without finding. Unfortunaly documentation is not so ordered. I'll try it asap. Thanks. – Merlinox Jul 23 '11 at 08:03
  • Kragen your first link has only broken link, but I think I can use this: http://lucene.apache.org/java/2_9_1/api/contrib-highlighter/org/apache/lucene/search/highlight/Highlighter.html – Merlinox Jul 23 '11 at 08:13
  • @Merlinox The first link definitely works, try it on a different PC / Internet connection. – Justin Jul 23 '11 at 12:23
  • sorry... I spoke about internal link, of your first link. But I found all. Thanks! – Merlinox Jul 25 '11 at 08:56