0

假设我有一个shouldBeSearchable()这样的集合:

public function shouldBeSearchable()
{
    return $this->is_active === 1;
}

默认情况下,在我的应用程序中,新创建的帖子将is_active设置为1,因此它将被添加到我的搜索索引中。

但是,如果我现在更新同一个帖子并将is_active 设置0,它会自动从我的搜索索引中删除吗?

4

2 回答 2

1

是的,它应该。如果它不起作用,那将是一个错误。

于 2018-03-27T16:40:05.457 回答
0

运行php artisan scout:flush "App\Models\YourModel"。然后运行php artisan scout:import "App\Models\YourModel

于 2019-08-01T16:07:02.160 回答