带有分数排序的新MongoDB PHP库全文搜索?

时间:2019-03-17 13:19:32

标签: php mongodb full-text-search

使用旧的旧版驱动程序时,它看起来像:

<?php
$cursor = $collection
->find
(
array( '$text' => array( '$search' => 'some text' ) ),
array( 'score' => array( '$meta' => 'textScore') )
)
->sort( array( '$meta' => 'textScore') );

如何使用新的MongoDB PHP库https://github.com/mongodb/mongo-php-library做同样的事情?

<?php
$cursor = $collection->find(
[ '$text' => [ '$search' => 'some text' ] ],
[ 'sort' => ... ]
);

0 个答案:

没有答案