我的应用程序模型允许患者拥有自定义字段。所有患者都有相同的海关字段。海关字段嵌入在患者文档中。我应该能够添加、更新和删除自定义字段,并且此类操作扩展到所有患者。
class Patient
include Mongoid::Document
embeds_many :custom_fields, as: :customizable_field
def self.add_custom_field_to_all_patients(custom_field)
Patient.all.add_to_set(:custom_fields, custom_field.as_document)
end
def self.update_custom_field_on_all_patients(custom_field)
Patient.all.each { |patient| patient.update_custom_field(custom_field) }
end
def update_custom_field(custom_field)
self.custom_fields.find(custom_field).update_attributes({ name: custom_field.name, show_on_table: custom_field.show_on_table } )
end
def self.destroy_custom_field_on_all_patients(custom_field)
Patient.all.each { |patient| patient.remove_custom_field(custom_field) }
end
def remove_custom_field(custom_field)
self.custom_fields.find(custom_field).destroy
end
end
class CustomField
include Mongoid::Document
field :name, type: String
field :model, type: Symbol
field :value, type: String
field :show_on_table, type: Boolean, default: false
embedded_in :customizable_field, polymorphic: true
end
所有的病人都嵌入了相同的海关字段。添加自定义字段效果很好。我的疑问是关于更新和销毁。
这有效,但速度很慢。它对每个病人进行查询。理想情况下,我只能对 MongoDB 说“使用id 更新文档:该文档嵌入在Patient集合中所有文档的数组 *custom_fields* 中”。同理销毁。
我怎样才能在 Mongoid 中做到这一点?
我正在使用 Mongoid 3.1.0 和 Rails 3.2.12