正如标题所示。我找不到与Mongoid 3相关的任何内容。发现的内容仅适用于不使用mongoid的旧版本Moped

我发现了这一点,但它不起作用:

def self.install_javascript
  getWeekJs = Rails.root.join("lib/javascript/getWeek.js")
  if collection.master['system.js'].find_one({'_id' => "getWeek"}).nil?
    collection.master.db.add_stored_function("getWeek", File.new(getWeekJs).read)
  end
end

此方法会将getWeek函数添加到system.js集合中。

如何在Mongoid 3中完成此操作?

最佳答案

搞定了!

代码:

class StoredProcedure
  include Mongoid::Document
  store_in collection: "system.js"

  field :_id, type: String, default: ""

  def self.test
    equalsJS = Rails.root.join("lib/assets/javascripts/equals.js")
    code = Moped::BSON::Code.new(File.new(equalsJS).read)
    unless where(id: "equals").first
      proc = new(value: code)
      proc._id = "equals"
      proc.save
    end
  end
end

解释:

我在system.js中使用mongoid,就好像它是正常集合一样。然后,我只是添加新文档。

重要的:

该值必须是Moped::BSON::Code实例,否则它将另存为字符串,因此无用。 id必须是函数的名称。我无法在create语句中指定ID,因此添加了多个步骤。

只需将其添加到rake任务中,以确保在部署后将所有必需的功能添加到mongo。

关于ruby-on-rails - 使用Mongoid 3在mongodb中存储函数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17340493/

10-13 05:28