Forum Moderators: coopster
I haven't utilised a plaintext search (mysql) for my products search, but have several fields I'd like to search. Was going to do a keyword density approach for each of the below fields, and weight it using the following:-
40% weight = Product Title
20% weight = Product Description
20% weight = Meta Tags (title/description/kw)
20% weight = Other fields
$weighting = array("title"=>0.4, "description"=>0.2, "meta"=>0.2, "other"=>0.2);
Are there quicker or better ways to do this / am I missing a trick?