MongoDB
 sql >> Baza danych >  >> NoSQL >> MongoDB

Mongoid te same typy dokumentów osadzonych dla różnych pól

Oto najlepsza odpowiedź!

class Email
  include Mongoid::Document

  embeds_many :to_recipients, :class_name => "Recipient"
  embeds_many :cc_recipients, :class_name => "Recipient"
  embeds_many :bcc_recipients, :class_name => "Recipient"    
  embeds_one :from, :class_name => "Recipient"

  field :subject, type: String
  field :body_text, type: String
  field :body_html, type: String
end

class Recipient
  include Mongoid::Document
  field :email_address, type: String
  field :name, type: String
  validates :email_address, :presence => true
  embedded_in :emails
end


  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Spring Data MongoDB – indeksy, adnotacje i konwertery

  2. dopasowanie wielobajtowych znaków utf8 w wyrażeniu regularnym mongodb

  3. Bieganie meteoru w klastrze i zmiany w czasie rzeczywistym

  4. Utracone nanosekundy pochodzące z obiektu ISODate MongoDB

  5. Jak ustawić $setDifference w tablicy i obiekcie za pomocą Mongo DB?