user85668
user85668

Reputation: 11

How to make a search engine for my apps

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?

Upvotes: 0

Views: 249

Answers (3)

Luke Lowrey
Luke Lowrey

Reputation: 3205

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.

Upvotes: 0

JohnIdol
JohnIdol

Reputation: 50067

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.

Upvotes: 2

Jim Blizard
Jim Blizard

Reputation: 4253

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

Upvotes: 0

Related Questions