Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I had some questions on an post I read here

What is Full Text Search vs LIKE

bearing of what erickson said in mind, I would like to explain my situation, I am free-lancing for an mid-range traffic website that probably has about 2000 hits or so an day, now in order to save time/money, I am looking for the most optimal way to design the search function for the site, does anyone have any measurements of performance to what degree full text index searches beat LIKE %%? And when/what scenarios should I advise them to switch?

The website has an table of less then 50,000 and uses the following to fetch results

                $quicksearch='';
foreach(explode(" ",$basic_search = $db->rem_special_chars($keywords_search))as $value){
$quicksearch.="a.name LIKE '%".$value."%' OR a.description LIKE '%".$value."%' AND ";
}
$query[] = substr($quicksearch,0,-4);   
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.