1

我想通过涟漪https://github.com/basho/ripple将数据保存到 riak 中,我创建了一个模型:

class Person
  include Ripple::Document
  property :name, String
  many :friends, :class_name => "Person"
end

如果有两个人模型实例,如何知道一个人是否是另一个人的朋友?喜欢:

person.friends.get(somekey)

4

1 回答 1

0

作为person.friends一个数组,你可以这样称呼它:

person.friends.include? otherperson
于 2013-11-11T16:22:45.987 回答