views:

117

answers:

3

Duplicate of:

What is a good search engine for embedding in a web site.

I mainly build apps in asp.net using a ms sql backend. Does anyone have a dummy guide for making a good search engine? I've been told not to you like statements in my stored procedures. If I don't use like, how do I search for terms with in all my columns containing text?

A: 

Don't make one. Look at Lucene.Net or similar search engine.

Jim Blizard
+2  A: 

I'd say the best way of making a good search engine is ... not doing it.

Use Lucene.net or any other out-of-the-box search engine.

JohnIdol
A: 

Another vote for "let someone else do your work".

You could give Google custom search a try. Has worked well when I've used it and you might make some money off the advertising.

Luke Lowrey