ASP.NET Search Engine

I am creating a corporate website. We are looking for any open or paid search engine based on ASP.NET. He must be able to

  • Search for web content on all pages of a site.
  • All office documents. etc.
  • If we have filtering of search results based on user type and stiff.

Please let me know what tools or software we need to consider.

+6
sql-server search-engine
source share
2 answers

Try Lucene.NET

Apache Lucene is a high-performance, full-featured text search engine library, fully written in Java. This is a technology suitable for almost any application that requires full-text search, especially cross-platform.

Lucene.Net is source code, class by class, API, and the API algorithmic port Java Lucene search engine for C # and the .NET platform using the Microsoft.NET Framework.

Here are some tutorial links to get you started:

+7
source share

Solr is another great option, it is actually a facade on top of lucene, which provides you with a nice REST / url API. An affordable, mature .Net library is also available there.

http://lucene.apache.org/solr/

http://code.google.com/p/solrnet/

From your question, however, are you looking for the actual base engine, or are you looking for something to also crawl / cross your content by creating indexes of your search engine?

-

Editing to respond to a comment from the original poster.

You have two halves of the equation to solve then.

First, we select a search engine that responds to input (keywords), and then requests its indexes and returns what, in its opinion, matches the corresponding matches. The second half of the equation is a search for a mechanism to populate the search index of your selected engine.

As for the engine, Lucene suggested, and I suggested the Lucene option, which provides a (possibly) improved developer interface. As for building your search corpus, this is a little different. Here you can choose to write your own software that takes up some of the content and adds it to the index. The advantage here is that you have little control over what goes into the search engine and when. On the other hand, you are writing new code - fortunately, modern search engines such as Lucene / Solr make this pretty easy.

The second option is to use something to automatically crawl your content and add it to the index. The challenges here are identifying and learning how to set up a suitable option. Depending on your choice of scanners, it may or may not well document documents sitting on the file system (for example, on the Sharepoint corporate website).

Nutch is an Apache crawler (creators of Lucene and Solr) that could potentially be used if you decide not to write your own code. http://wiki.apache.org/nutch/

+2
source share

All Articles