Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的模型中有这个
index({company_name: 1, first_name: 1, last_name: 1 })
Model.text_search 'something'
给出这个错误
Mongo::Error::OperationFailure: text index required for $text query
我找到了解决方案
index({company_name: 'text', first_name: 'text', last_name: 'text' })
您只需要传递“文本”而不是 1。