mirror of https://github.com/pelias/api.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
98 lines
2.2 KiB
98 lines
2.2 KiB
9 years ago
|
module.exports = {
|
||
|
'query': {
|
||
9 years ago
|
'bool': {
|
||
|
'must': [{
|
||
|
'match': {
|
||
|
'name.default': {
|
||
8 years ago
|
'query': 'test',
|
||
|
'boost': 1,
|
||
|
'analyzer': 'peliasQueryFullToken'
|
||
9 years ago
|
}
|
||
|
}
|
||
|
}],
|
||
|
'should': [{
|
||
|
'match': {
|
||
|
'phrase.default': {
|
||
8 years ago
|
'query': 'test',
|
||
9 years ago
|
'analyzer': 'peliasPhrase',
|
||
|
'type': 'phrase',
|
||
8 years ago
|
'boost': 1,
|
||
|
'slop': 2
|
||
9 years ago
|
}
|
||
|
}
|
||
|
},{
|
||
|
'function_score': {
|
||
|
'query': {
|
||
9 years ago
|
'match': {
|
||
9 years ago
|
'phrase.default': {
|
||
8 years ago
|
'query': 'test',
|
||
9 years ago
|
'analyzer': 'peliasPhrase',
|
||
|
'type': 'phrase',
|
||
|
'slop': 2,
|
||
9 years ago
|
'boost': 1
|
||
|
}
|
||
|
}
|
||
9 years ago
|
},
|
||
|
'max_boost': 20,
|
||
|
'score_mode': 'first',
|
||
|
'boost_mode': 'replace',
|
||
|
'functions': [{
|
||
|
'field_value_factor': {
|
||
|
'modifier': 'log1p',
|
||
|
'field': 'popularity',
|
||
|
'missing': 1
|
||
|
},
|
||
|
'weight': 1
|
||
|
}]
|
||
|
}
|
||
|
},{
|
||
|
'function_score': {
|
||
|
'query': {
|
||
9 years ago
|
'match': {
|
||
|
'phrase.default': {
|
||
8 years ago
|
'query': 'test',
|
||
9 years ago
|
'analyzer': 'peliasPhrase',
|
||
|
'type': 'phrase',
|
||
|
'slop': 2,
|
||
|
'boost': 1
|
||
|
}
|
||
|
}
|
||
9 years ago
|
},
|
||
|
'max_boost': 20,
|
||
|
'score_mode': 'first',
|
||
|
'boost_mode': 'replace',
|
||
|
'functions': [{
|
||
|
'field_value_factor': {
|
||
|
'modifier': 'log1p',
|
||
|
'field': 'population',
|
||
|
'missing': 1
|
||
|
},
|
||
|
'weight': 2
|
||
9 years ago
|
}]
|
||
|
}
|
||
8 years ago
|
}],
|
||
8 years ago
|
'filter': [{
|
||
|
'geo_bounding_box': {
|
||
|
'type': 'indexed',
|
||
|
'center_point': {
|
||
|
'top': 11.51,
|
||
|
'right': -61.84,
|
||
|
'bottom': 47.47,
|
||
|
'left': -103.16
|
||
|
}
|
||
|
}
|
||
|
},
|
||
8 years ago
|
{
|
||
|
'terms': {
|
||
|
'layer': [
|
||
8 years ago
|
'test'
|
||
8 years ago
|
]
|
||
|
}
|
||
8 years ago
|
}]
|
||
9 years ago
|
}
|
||
|
},
|
||
|
'sort': [ '_score' ],
|
||
8 years ago
|
'size': 10,
|
||
9 years ago
|
'track_scores': true
|
||
9 years ago
|
};
|