Noob在这里,试图设置简单:搜索使用elasticsearch作为其引擎。我该怎么办呢?到目前为止,我似乎没有工作。
ArtistsIndex = new Index({
collection: Artists,
fields: ['name'],
engine: new ElasticSearchEngine({
query: function () {
// what goes in here???
}
})
});
我认为我应该将查询配置为引擎中的一个选项,但我似乎无法正确使用该部分。