有没有办法通过 Mongoid 使用 MongoDB (v 2.4) 的全文搜索功能?我尝试了来自google group 链接的答案,但不断收到以下错误。
在一个选项卡中,我这样启动了 mongod:~$ mongod --setParameter textSearchEnabled=true
导致错误的行:
Article.mongo_session.command({:text => {:search => 'Ruby'}})
如果有人能指出一种runCommand
在 Ruby 中执行 MongoDB 的方法,那就太好了,这样我就可以直接运行命令db.collection.runCommand( "text", { search: <string> })
failed with error 13111: "exception: wrong type for field (text) 3 != 2"
See https://github.com/mongodb/mongo/blob/master/docs/errors.md
for details about this error.