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 の代わりに 'text' を渡すだけです。