如果我理解正确,您希望能够基于created_at
列进行过滤,但它不应该是可搜索的,即输入“795”作为查询不应该返回“795”是时间戳一部分的所有结果?
我认为 Scout 目前不会允许您以简单的方式实现这一目标,但它仍然应该是可能的。
第 1 步是将created_at
列添加到toSearchableArray()
方法中。这将确保数据被 Meili 索引。
第 2 步是更改模型可搜索的索引配置,以便从可搜索属性created_at
列表中排除。这是伪代码且未记录在案,但应如下所示:
$dummy = new Comment();
// Should resolve to an engine: https://github.com/laravel/scout/blob/f8aa3c3182fe97f56a6436fd0b28fcacfcbabc11/src/Searchable.php#L279
$engine = $dummy->searchableUsing();
// Should resolve to MeiliSearch\Endpoints\Indexes via a magic method that resolves the underlying Meili driver:
// https://github.com/laravel/scout/blob/33bbff0e3bfb1abd0ea34236c331fc17cdeac0bc/src/Engines/MeiliSearchEngine.php#L298
// ->
// https://github.com/meilisearch/meilisearch-php/blob/f25ee49b658f407af3d3f1f9a402997e7974b6bb/src/Delegates/HandlesIndex.php#L23
$index = $engine->index($dummy->searchableAs());
// https://github.com/meilisearch/meilisearch-php/blob/f25ee49b658f407af3d3f1f9a402997e7974b6bb/src/Endpoints/Delegates/HandlesSettings.php#L55
$index->updateSearchableAttributes(
['id','title', 'link', 'raw_text', 'subchan', 'nsfw']
);
一旦created_at
被索引但不可搜索,您想要过滤该值。梅里有数值运算符。
第 3 步是使用 Scout进行自定义搜索:
Comment::search($query, function (Indexes $meilisearch, $query, $options) {
$options['filters'] = 'created_at>795484800';
return $meilisearch->search($query, $options);
});
同样,这是伪代码——我还没有测试过它的任何部分。如果 Scout 支持在创建时自定义索引设置或公开更新设置的方法,例如允许您在配置文件中添加驱动程序特定设置,我将不胜感激。