I have these tables:

businesses

  • :name
  • :rating

categories

  • :name

business_categories

  • :business_id
  • :category_id

reviews

  • content
  • business_id

Now I want to do a search, when type keywords, match it in these columns:

  • business.name
  • business.category.name
  • business.review.content

Then order the results by the weight, the weight calculation will be something like

weight = business name matchs * w1 + business rating * w2 + category name matchs * w3 + review content matchs * w4

so I got several questions here:

  • Is there a easy way to figure out these weights(w1, w2 etc..)?
  • Is it possible to do the search by using sql query?
  • Is there a way to cache the weights? If it require to calculate the weight for each search, the speed will not be acceptable.
link|improve this question
How do you get the values for w1, w2, w3, and 24? – Kevin Crowell Mar 24 '10 at 19:20
I am trying to make a list about the matchs, for example if business name match keywords will have higher weight than which has category name matched but no business name matched. etc.. With this list I think the weights can be figure out by exhaustivity, for the first question I'd like to know is their a way better than exhaustivity? – Daniel Mar 25 '10 at 10:08
feedback

1 Answer

Only you can know what the weights are supposed to be and you might set them by trial and error until you're satisfied with the results.

You could try querying using SQL with something like where business.name in (search keywords list) (repeating this for categories and reviews...not sure if it's the best way to go about it, though.

Finally, I don't see a way for you to cache anything because you have an infinite number of inputs and the summary weight of each query result is a function of the input.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.