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

Mongoid:Verwenden Sie mehr als eine Datenbank?

Die neuesten Versionen von Mongoid unterstützen dies. Siehe die Dokumentation .

Ausschnitte:

config/mongoid.yml:

defaults: &defaults
  host: localhost
  slaves:
    - host: localhost
      port: 27018
    - host: localhost
      port: 27019
  databases:
    secondary:
      database: secondary_database
      host: localhost
      port: 27020
      slaves:
        - host: localhost
          port: 27021
        - host: localhost
          port: 27022

In Ihrem Modell:

class Business
  include Mongoid::Document
  set_database :secondary
end