2

私はレシピのコレクションを持っており、それぞれにいくつかの材料があります。この情報は結合テーブルに格納されます。レシピを教えてください、材料に基づいてそれに似たレシピを見つけたいです。どうすればこれを行うことができますか?

4

2 に答える 2

9

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
于 2010-04-10T04:27:03.893 に答える
0
recipe = Reciepe.first
ingredients = recipe.ingredients
# Find out reciepes with at least one ingredient similar
reciepes = ingredients.each{|in| in.reciepes}
# find out reciepes with at least {count %} ingredients similar
count = 0.5 # 50%
number = (count*ingredients.size).to_i
more_recipies = recipies.select{|r| (r.ingridients&ingredients).size >= number)}

未検証

于 2010-04-09T23:28:51.923 に答える