Mongoid Without Rails

來源:互聯網
上載者:User

標籤:des   style   http   os   io   for   

question

I‘m playing with a standalone ruby application and can‘t configure Mongoid 3.0.13 to work.

I‘ve run across a couple example apps that have configuration blocks like:

Mongoid::Config.instance.from_hash({"database" => "oid"})

Or

Mongoid.configure do |config| name = "mongoid_test_db" host = "localhost" port = 27017 config.database = Mongo::Connection.new.db(name)end

These result in:

undefined method `database=‘ for Mongoid::Config:Module (NoMethodError)

It seems the configuration settings have changed recently.

I also tried:

Mongoid::Config.connect_to("sweet")

But that seems to do nothing.

answer1

By "standalone" I‘m assuming you mean not rails. Mongoid actually provides and easy to make this work regardless of what you‘re running it in.

  1. Define a mongoid.yml file with your database connection info in it like normal.
  2. Make sure you‘ve required Mongoid in your application.
  3. Call Mongoid.load! to have Mongoid parse your configuration file and initialize itself.

    require ‘mongoid‘
    Mongoid.load!(‘/path/to/your/mongoid.yml‘)

This info can also be found here under the "Sinatra, Padrino, and others" section: http://mongoid.org/en/mongoid/docs/installation.html

The same approach is applicable for non-webapps. Hope that helps.

answer2

The previous answer is correct to use Mongoid.load! if you want to load from a mongoid config file. I ran into a case where I needed to embed the Mongoid config in another config file. Therefore, I needed a way to load the configuration from a hash.

In >3.1, you will be able to call Mongoid.load_configuration(hash).

Unfortunately, this function is private in 3.0. Therefore, setting up a public alias method before loading Mongoid works:

module Mongoid  module Config    def load_configuration_hash(settings)      load_configuration(settings)    end  endend

Make sure this code gets called before require ‘mongoid‘. Now you can call Mongoid.load_configuration_hash(hash).

 

地址: http://stackoverflow.com/questions/15283984/mongoid-without-rails

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.