mirror of https://github.com/pelias/api.git
missinglink
9 years ago
7 changed files with 457 additions and 72 deletions
@ -0,0 +1,80 @@
|
||||
|
||||
module.exports = { |
||||
'query': { |
||||
'filtered': { |
||||
'query': { |
||||
'bool': { |
||||
'must': [{ |
||||
'match': { |
||||
'name.default': { |
||||
'analyzer': 'peliasPhrase', |
||||
'boost': 1, |
||||
'query': 'one', |
||||
'type': 'phrase', |
||||
'operator': 'and' |
||||
} |
||||
} |
||||
}], |
||||
'should':[{ |
||||
'function_score': { |
||||
'query': { |
||||
'match': { |
||||
'name.default': { |
||||
'analyzer': 'peliasPhrase', |
||||
'query': 'one', |
||||
'operator': 'and' |
||||
} |
||||
} |
||||
}, |
||||
'max_boost': 20, |
||||
'score_mode': 'first', |
||||
'boost_mode': 'replace', |
||||
'filter': { |
||||
'exists': { |
||||
'field': 'popularity' |
||||
} |
||||
}, |
||||
'functions': [{ |
||||
'field_value_factor': { |
||||
'modifier': 'log1p', |
||||
'field': 'popularity' |
||||
}, |
||||
'weight': 1 |
||||
}] |
||||
} |
||||
},{ |
||||
'function_score': { |
||||
'query': { |
||||
'match': { |
||||
'name.default': { |
||||
'analyzer': 'peliasPhrase', |
||||
'query': 'one', |
||||
'operator': 'and' |
||||
} |
||||
} |
||||
}, |
||||
'max_boost': 20, |
||||
'score_mode': 'first', |
||||
'boost_mode': 'replace', |
||||
'filter': { |
||||
'exists': { |
||||
'field': 'population' |
||||
} |
||||
}, |
||||
'functions': [{ |
||||
'field_value_factor': { |
||||
'modifier': 'log1p', |
||||
'field': 'population' |
||||
}, |
||||
'weight': 2 |
||||
}] |
||||
} |
||||
}] |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
'sort': [ '_score' ], |
||||
'size': 10, |
||||
'track_scores': true |
||||
}; |
@ -0,0 +1,91 @@
|
||||
|
||||
module.exports = { |
||||
'query': { |
||||
'filtered': { |
||||
'query': { |
||||
'bool': { |
||||
'must': [{ |
||||
'match': { |
||||
'phrase.default': { |
||||
'analyzer': 'peliasPhrase', |
||||
'type': 'phrase', |
||||
'boost': 1, |
||||
'slop': 2, |
||||
'query': 'one two' |
||||
} |
||||
} |
||||
}, |
||||
{ |
||||
'match': { |
||||
'name.default': { |
||||
'analyzer': 'peliasPhrase', |
||||
'boost': 1, |
||||
'query': 'three', |
||||
'type': 'phrase', |
||||
'operator': 'and' |
||||
} |
||||
} |
||||
}], |
||||
'should':[{ |
||||
'function_score': { |
||||
'query': { |
||||
'match': { |
||||
'name.default': { |
||||
'analyzer': 'peliasPhrase', |
||||
'query': 'one two three', |
||||
'operator': 'and' |
||||
} |
||||
} |
||||
}, |
||||
'max_boost': 20, |
||||
'score_mode': 'first', |
||||
'boost_mode': 'replace', |
||||
'filter': { |
||||
'exists': { |
||||
'field': 'popularity' |
||||
} |
||||
}, |
||||
'functions': [{ |
||||
'field_value_factor': { |
||||
'modifier': 'log1p', |
||||
'field': 'popularity' |
||||
}, |
||||
'weight': 1 |
||||
}] |
||||
} |
||||
},{ |
||||
'function_score': { |
||||
'query': { |
||||
'match': { |
||||
'name.default': { |
||||
'analyzer': 'peliasPhrase', |
||||
'query': 'one two three', |
||||
'operator': 'and' |
||||
} |
||||
} |
||||
}, |
||||
'max_boost': 20, |
||||
'score_mode': 'first', |
||||
'boost_mode': 'replace', |
||||
'filter': { |
||||
'exists': { |
||||
'field': 'population' |
||||
} |
||||
}, |
||||
'functions': [{ |
||||
'field_value_factor': { |
||||
'modifier': 'log1p', |
||||
'field': 'population' |
||||
}, |
||||
'weight': 2 |
||||
}] |
||||
} |
||||
}] |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
'sort': [ '_score' ], |
||||
'size': 10, |
||||
'track_scores': true |
||||
}; |
@ -0,0 +1,154 @@
|
||||
|
||||
module.exports = { |
||||
'query': { |
||||
'filtered': { |
||||
'query': { |
||||
'bool': { |
||||
'must': [ |
||||
{ |
||||
'match': { |
||||
'phrase.default': { |
||||
'analyzer': 'peliasPhrase', |
||||
'type': 'phrase', |
||||
'boost': 1, |
||||
'slop': 2, |
||||
'query': 'one two' |
||||
} |
||||
} |
||||
} |
||||
], |
||||
'should': [ |
||||
{ |
||||
'match': { |
||||
'admin0': { |
||||
'analyzer': 'peliasAdmin', |
||||
'boost': 4, |
||||
'query': 'three' |
||||
} |
||||
} |
||||
}, |
||||
{ |
||||
'match': { |
||||
'admin1': { |
||||
'analyzer': 'peliasAdmin', |
||||
'boost': 3, |
||||
'query': 'three' |
||||
} |
||||
} |
||||
}, |
||||
{ |
||||
'match': { |
||||
'admin1_abbr': { |
||||
'analyzer': 'peliasAdmin', |
||||
'boost': 3, |
||||
'query': 'three' |
||||
} |
||||
} |
||||
}, |
||||
{ |
||||
'match': { |
||||
'admin2': { |
||||
'analyzer': 'peliasAdmin', |
||||
'boost': 2, |
||||
'query': 'three' |
||||
} |
||||
} |
||||
}, |
||||
{ |
||||
'match': { |
||||
'local_admin': { |
||||
'analyzer': 'peliasAdmin', |
||||
'boost': 1, |
||||
'query': 'three' |
||||
} |
||||
} |
||||
}, |
||||
{ |
||||
'match': { |
||||
'locality': { |
||||
'analyzer': 'peliasAdmin', |
||||
'boost': 1, |
||||
'query': 'three' |
||||
} |
||||
} |
||||
}, |
||||
{ |
||||
'match': { |
||||
'neighborhood': { |
||||
'analyzer': 'peliasAdmin', |
||||
'boost': 1, |
||||
'query': 'three' |
||||
} |
||||
} |
||||
}, |
||||
{ |
||||
'function_score': { |
||||
'query': { |
||||
'match': { |
||||
'name.default': { |
||||
'analyzer': 'peliasPhrase', |
||||
'query': 'one two', |
||||
'operator': 'and' |
||||
} |
||||
} |
||||
}, |
||||
'max_boost': 20, |
||||
'functions': [ |
||||
{ |
||||
'field_value_factor': { |
||||
'modifier': 'log1p', |
||||
'field': 'popularity' |
||||
}, |
||||
'weight': 1 |
||||
} |
||||
], |
||||
'score_mode': 'first', |
||||
'boost_mode': 'replace', |
||||
'filter': { |
||||
'exists': { |
||||
'field': 'popularity' |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
{ |
||||
'function_score': { |
||||
'query': { |
||||
'match': { |
||||
'name.default': { |
||||
'analyzer': 'peliasPhrase', |
||||
'query': 'one two', |
||||
'operator': 'and' |
||||
} |
||||
} |
||||
}, |
||||
'max_boost': 20, |
||||
'functions': [ |
||||
{ |
||||
'field_value_factor': { |
||||
'modifier': 'log1p', |
||||
'field': 'population' |
||||
}, |
||||
'weight': 2 |
||||
} |
||||
], |
||||
'score_mode': 'first', |
||||
'boost_mode': 'replace', |
||||
'filter': { |
||||
'exists': { |
||||
'field': 'population' |
||||
} |
||||
} |
||||
} |
||||
} |
||||
] |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
'size': 10, |
||||
'track_scores': true, |
||||
'sort': [ |
||||
'_score' |
||||
] |
||||
}; |
Loading…
Reference in new issue