我可以像使用这个mongodb命令一样为ruby模型中的所有字段创建文本索引:
db.documents.createIndex({ "$**": "text" }, { name: "TextIndex" })
我们也可以以某种方式为索引添加数字属性。我试过这样但是没有
def fulltext_index
attributes.except(:_rev, :_type, :doc_type).values.map{|e| e.class==String ? e.to_s : ""}.join(" ").strip + " " + sequence.to_s
end
index({ fulltext_index: "text"})
答案 0 :(得分:0)
您可以在以下示例中创建所需的索引作为第二行:
client = Mongo::Client.new([ '127.0.0.1:27017' ], :database => 'music')
client[:bands].indexes.create_one( { "$**": "text" } )
请查看此链接以获取更多信息: https://github.com/mongodb/mongo-ruby-driver/blob/master/docs/tutorials/ruby-driver-indexing.txt
答案 1 :(得分:0)
对于我来说,我需要打开一个Rails控制台并运行它:
对于名为Model的模型
client = Mongoid.default_client[Model.collection_name]
client.indexes.create_one( { "$**" => "text" } )
对于其他自定义idexe,请查看此answer