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);