一般的に、textSearchを処理するときは、標準の検索ではなくパイプラインフレームワークを使用することをお勧めします。
たとえば、次のように実行します:
db.model.aggregate(
[
{ $match: { $text: { $search: "text" } } },
{ $sort: { score: { $meta: "textScore" } } },
{ $limit: 10 }
]
)
最初の10個の要素だけを返します。