vote up 5 vote down star
3

I am thinking of changing my web site's homegrown search engine. Before I break out Visual Studio, I wondered if anyone can suggest an alternative that gives me what I need. This being:

  • Works with an ASP.NET site (is a .NET project)
  • Creates a file-based index
  • Fast search across hundreds or thousands of pages
  • Performs word-stemming to find variations upon words
  • Gives full control over the output styles
  • Is cheap (or better still, free!)
flag

7 Answers

vote up 2 vote down check

The .NET version of Lucene is what we've been using. It meets all of your criteria.

link|flag
Do you have an example site I can take a gander at? – BlackWasp Sep 29 '08 at 22:20
EstateSales.NET The search at the top right is using it. Search for Memphis or something like your city name. – Micky McQuade Oct 1 '08 at 0:59
vote up 4 vote down

You can't really beat Google Site Search for this. It's fully customizable - and no need for embedding or maintaining.

EDIT: found this ASP.NET opensource search engine that you can take and run with, In response to your comment about knowing what google does, this is well documented and they have TONS of webmaster tools for you.

link|flag
vote up 1 vote down

Why can't you try out google custom search engine? If you want ultimate control over the indexing you can create your own search engine using lucene.net

link|flag
I tried it but it does not seem to give me the control I am after. Particularly it doesn't allow me to show the icons that I currently show alongside results. I am also concerned that it indexes when Google wants, not necessarily when I want it to. – BlackWasp Sep 28 '08 at 18:18
vote up 0 vote down

If you absolutely want your own search engine and have the possibility of deploying java, then check out nutch.

link|flag
vote up 1 vote down

From my question "In-house full-text search engine for source code and SQL scripts":

I use Hyper Estraier, but Namazu is also well-known.

There are also ht://Dig, Lucene, Xapian, etc.. but I don't know too much about them.

link|flag
vote up 2 vote down

First I would agree with Google Site Search.

However, if you want to search on criteria that Google might not see (like stuff in the database, etc), then you might look at Lucene.net. It is a port of the Java Lucene project:

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

It is free under the Apache license.

link|flag
vote up 0 vote down

DTSearch engine at http://www.dtsearch.com/ is a good and solid engine that is easy to develop against. Although it do cost money.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.