views:

169

answers:

3

Hello, i have some problem. i need to know how to make word suggestions in search engine like google "did you mean ... "

If you can, using vector space model method. i have searched in goggle but i still don't get the answer.

Please help me, thanks you before..

+1  A: 

The Lucene search engine has "did you mean" support, and it's open source, so you can take the code and see how it works or reuse it in your project. Actually, it's probably worth using the entire engine instead of reinventing the wheel by creating a new search engine from scratch.

ceejayoz
A: 

I implemented this one on my site.You need to know about ajax and server side code to retrieve your data.....

joe capi
I'm pretty sure he's asking how to code the algorithm that suggests other queries.
ceejayoz
+2  A: 

Have a look at the example from Peter Norvig (Director of Research at Google).

Ian G
He gave an overview of this at DevDays its very interesting.
Toby Allen