Laravel Scout/Meilisearch - 按不可搜索的列过滤
Posted
技术标签:
【中文标题】Laravel Scout/Meilisearch - 按不可搜索的列过滤【英文标题】:Laravel Scout/Meilisearch - filter by a non-searchable column 【发布时间】:2021-08-25 22:40:54 【问题描述】:我想这样做,以便我可以根据 Meilisearch 和 Laravel scout 无法搜索的列过滤结果。
想象一个“评论”表,其中包含以下可搜索列:
public function toSearchableArray()
$array = Arr::only(
$this->toArray(),
['id','title', 'link', 'raw_text', 'subchan', 'nsfw']
);
return $array;
但只能在特定日期之后获得结果:
Comment::search($query, ['filters' => 'created_at > 795484800'])
为此,我需要添加created_at
scout 的toSearchableArray。这样做的问题是,当用户搜索时,created_at
的结果也会被查询。
【问题讨论】:
【参考方案1】:如果我理解正确,您希望能够根据 created_at
列进行过滤,但它不应该是可搜索的,即输入“795”作为查询不应返回“795”所在的所有结果时间戳的一部分?
我认为目前 Scout 不会允许您以简单的方式实现这一目标,但它仍然应该是可能的。
第 1 步是将created_at
列添加到toSearchableArray()
方法。这将确保数据被梅里索引。
第 2 步是更改可搜索模型的索引配置,以便从 searchable attributes 列表中排除 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
被编入索引但不可搜索,您想要过滤该值。梅丽有operators for numeric values。
第 3 步是使用 Scout 执行custom search:
Comment::search($query, function (Indexes $meilisearch, $query, $options)
$options['filters'] = 'created_at>795484800';
return $meilisearch->search($query, $options);
);
同样,这是伪代码——我没有测试过它的任何部分。如果 Scout 支持自定义索引设置on creation 或公开更新设置的方法,例如允许您在配置文件中添加驱动程序特定设置,我将不胜感激。
【讨论】:
以上是关于Laravel Scout/Meilisearch - 按不可搜索的列过滤的主要内容,如果未能解决你的问题,请参考以下文章