Предположим, что рецепт считается похожим, если в нем 3 общих ингредиента.
class Recipe < ActiveRecord::Base
has_many :recipe_ingredients
# with three similar ingredients
def similar(n=3)
Recipe.find(
RecipeIngredient.count(
:joins => "join recipe_ingredients B ON B.recipe_id = #{self.id}",
:conditions => "recipe_ingredients.recipe_id != B.recipe_id AND
recipe_ingredients.ingredient_id = B.ingredient_id",
:group => "recipe_ingredients.recipe_id",
:having => "count(*) >= #{n}"
).keys
)
end
end
class RecipeIngredient < ActiveRecord::Base
belongs_to :recipe
belongs_to :ingredient
end
class Ingredient < ActiveRecord::Base
has_many :recipe_ingredients
end
По заданному рецепту вы можете получить следующие рецепты:
recipe.similar # 3 similar ingredients
recipe.similar(4) # 4 similar ingredients