我有一个 Laravel 应用程序。scout
我安装了 elasticsearch 服务器并使用和实现它到 laravel 中tamayo/laravel-scout-elastic
。
一切工作几乎完美。我有两个问题我找不到答案。
如何通过大多数单词匹配对结果的输出进行排序。或者
_score of the elastic results
如何组合两种类型的同一索引?我有索引的名称
news
如何组合world news
和sports news
?
我正在使用这种方法进行搜索:
$searched = Model::search($q)->get();
在模型中,我包含了Scout
use Laravel\Scout\Searchable;
和use Searchable;