0
我有一個API數據發佈到貓鼬端點。 我嘗試立即執行搜索,我得到0結果。驗證碼:Mongoosastic搜索立即保存到貓鼬
newSchema.save((err) => {
if (err) reject(new Error(err));
newSchema.on('es-indexed', (err, res) => {
Schema.search(query, function (err, results) {
resolve(results);
});
});
});
我命中空車返回。 如果我圍繞Schema.search
與超時1000毫秒我得到了我希望的結果。
我不希望使用這種超時解決方法。有人有建議嗎? 謝謝。