0
我想查詢多個表有多個索引和類型,但沒有可用的文件在多索引,mongoosastic中的多種類型查詢。如何在mongoosastic中查詢多指標,多指標?
請參考這個doc試圖做同樣的事情,但與mongoosastic查詢。
我想查詢多個表有多個索引和類型,但沒有可用的文件在多索引,mongoosastic中的多種類型查詢。如何在mongoosastic中查詢多指標,多指標?
請參考這個doc試圖做同樣的事情,但與mongoosastic查詢。
我有同樣的問題。請執行以下操作以使其正常工作。
確保您刪除索引:
通過郵遞員例如DELETE請求:http://127.0.0.1:9200/ {your_name}
然後在節點JS創建這樣的映射:
var schema = new Schema({
product_name: String,
description: {
type: String,
es_type: 'multi_field',
es_fields: {
multi_field: { type: 'string', index: 'analyzed' },
untouched: { type: 'string', index: 'not_analyzed' }
}
}
});
最後,你可以像這樣的查詢:
{
"query" : {
"constant_score" : {
"filter" : {
"term" : {
"description.multi_field" : "nog een testje"
}
}
}
}}// to use other field, change the . after description
{
"query" : {
"constant_score" : {
"filter" : {
"term" : {
"description.untouched" : "nog een testje"
}
}
}
}
}