sql >> Database teknologi >  >> NoSQL >> MongoDB

activerecord og mongo / mongo-mapper bridge

Dette fungerede smukt

placer model

  key :location_id, Integer, :required => true

    def location
        Location.find(location_id)
    end

placeringsmodel

  def self.find_places(id)
    Property.find_by_location_id(id)
  end

  def find_places
    Property.find_by_location_id(id)
  end


  1. Opdatering af et array i MongoDB ved hjælp af Java-driver

  2. Redis Sentinel

  3. MongoDB:Hvordan forenes alle resultater fra samme samling?

  4. Mongoose multi-opdatering