我想在elasticsearch中搜索。 我使用mongoosastic作为弹性搜索的驱动程序。 我想在哪里搜索字符串是否存在于一个字段中,我想再搜索一个字段是否应该完全匹配。我怎么能在mongoosastic中做到这一点。
答案 0 :(得分:4)
您需要的是弹性搜索的bool query功能。
我不知道你在这个过程中遇到了什么,但我会尝试描述这个过程。
要将索引到Elasticsearch的模型添加插件。
var mongoose = require('mongoose'),
mongoosastic = require('mongoosastic'),
Schema = mongoose.Schema
var User = new Schema({
name: String,
country: String,
age: Number,
email: String,
city: String})
User.plugin(mongoosastic)
然后,您可以在模型上执行ES搜索,但首先要格式化查询。假设您希望每个用户都住在英格兰,但不是在伦敦,并且您希望匹配30到40岁之间的用户:
var query = {
"bool" : {
"must" : {
"term" : { "country" : "england" }
},
"must_not" : {
"city" : { "city" : "london" }
},
"should" : {
"range" : {
"age" : { "from" : 30, "to" : 40}
}
}
}
}
您将在年龄段内获得与您的查询不匹配的用户,但ES将使用评分系统对结果进行排序。
完成后,您将查询发送给ES并处理结果
User.search(query, function (err, users) {
if (err) {
//Handle error
}
var results = users.hits.hits;
//work with your hits
}