我的 mongo_mapper 设置如下:
class Person
include MongoMapper::Document
many :pets
end
class Pet
include MongoMapper::EmbeddedDocument
key :animal, String
key :name, String
key :colour, String
end
# Create a person
me = Person.new
# Add pets to the person
me.pets << Pet.new(:animal => 'dog',:name => 'Mr. Woofs', :colour => 'golden')
me.pets << Pet.new(:animal => 'cat', :name => 'Kitty', :colour => 'black')
me.pets << Pet.new(:animal => 'cat', :name => 'Freckles', :colour => 'black')
me.pets << Pet.new(:animal => 'cat', :name => 'Fluffy', :colour => 'tabby')
我知道我可以非常简单地删除所有宠物(me.pets
作为数组工作,但也可以回调)
# Delete all pets
me.pets.clear
我也知道我可以通过这样做删除所有的黑猫:
# Delete black cats
me.pets.delete_if {|pet| pet.animal == 'cat' and pet.colour = 'black'}
但是如果有大量的宠物需要迭代,这似乎需要很长时间。
我觉得应该有一种方法可以只选择黑猫,然后选择clear
那个数组。有没有这样的方法?