MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Das Modellattribut enthält eine Sammlung von Objekten

Ich habe acts_as_list verwendet für die Implementierung sortierbarer Objekte sehr erfolgreich. Zusätzlich würde ich die Elemente einer Seite in ein separates Modell abstrahieren, hier PageElement genannt .

Ich denke, es besteht keine Notwendigkeit, auf eine NoSQL-Datenbank umzusteigen (obwohl ich nichts gegen diesen Ansatz habe). Hier ist eine grobe Skizze dessen, was ich denke:

class Page < ActiveRecord::Base
  has_many :page_elements, :order => 'position'
  has_many :todo_lists,  :through => :page_elements, :source => :element, :source_type => 'TodoList'
  has_many :notes,       :through => :page_elements, :source => :element, :source_type => 'Note'
  has_many :files,       :through => :page_elements, :source => :element, :source_type => 'File'
  has_many :discussions, :through => :page_elements, :source => :element, :source_type => 'Discussion'
end

class PageElement < ActiveRecord::Base
  belongs_to :page
  belongs_to :element, :polymorphic => true
  acts_as_list :scope => :page
end

class TodoList < ActiveRecord::Base
  has_one :page_element, :as => :element
  has_one :page, :through => :page_elements 
end

class Note < ActiveRecord::Base
  has_one :page_element, :as => :element
  has_one :page, :through => :page_elements 
end

class File < ActiveRecord::Base
  has_one :page_element, :as => :element
  has_one :page, :through => :page_elements 
end

class Discussion < ActiveRecord::Base
  has_one :page_element, :as => :element
  has_one :page, :through => :page_elements 
end