所以基本上我将我的应用程序部署到了生产环境,而且我有一个Scout没有导入记录的问题。 我有一个组件:
var algoliasearch = require('algoliasearch');
var client = algoliasearch('ID', 'KEY');
var = index = client.initIndex('prod_users'); // index i created in algolia with 0 records
我的生产数据库有1个用户 在我的服务器上运行
php artisan scout:import "App\User"
它说:
Imported [App\User] models up to ID: 1
All [App\User] records have been imported
但是当我在索引部分查看我的algolia仪表板时,我的prod_users索引有0条记录
我不知道我忘记了什么?
答案 0 :(得分:0)
我认为你粘贴了php artisan scout:flush 'App\User'
的API调用。
你应该检查:
.env
searchableAs()
方法此致