Browse Source

boost phrase matching

phrase_slop_disable_tf_idf
Peter Johnson 10 years ago
parent
commit
29ef42e290
  1. 5
      query/search.js
  2. 15
      test/unit/query/search.js

5
query/search.js

@ -100,7 +100,7 @@ function generate( params ){
} }
// add search condition to distance query // add search condition to distance query
query.query.filtered.query.bool.must.push({ query.query.filtered.query.bool.must.push({
'match': { 'match': {
'name.default': { 'name.default': {
'query': input, 'query': input,
@ -117,7 +117,8 @@ function generate( params ){
'query': input, 'query': input,
'analyzer': 'peliasPhrase', 'analyzer': 'peliasPhrase',
'type': 'phrase', 'type': 'phrase',
'slop': 2 'slop': 2,
'boost': 2
} }
} }
}); });

15
test/unit/query/search.js

@ -92,7 +92,8 @@ var expected = {
'query': 'test', 'query': 'test',
'analyzer': 'peliasPhrase', 'analyzer': 'peliasPhrase',
'type': 'phrase', 'type': 'phrase',
'slop': 2 'slop': 2,
'boost': 2
} }
} }
}] }]
@ -182,7 +183,8 @@ module.exports.tests.query = function(test, common) {
'query': 'test', 'query': 'test',
'analyzer': 'peliasPhrase', 'analyzer': 'peliasPhrase',
'type': 'phrase', 'type': 'phrase',
'slop': 2 'slop': 2,
'boost': 2
} }
} }
}] }]
@ -230,7 +232,8 @@ module.exports.tests.query = function(test, common) {
'query': 'test', 'query': 'test',
'analyzer': 'peliasPhrase', 'analyzer': 'peliasPhrase',
'type': 'phrase', 'type': 'phrase',
'slop': 2 'slop': 2,
'boost': 2
} }
} }
}] }]
@ -323,7 +326,8 @@ module.exports.tests.query = function(test, common) {
'query': '123 main st', 'query': '123 main st',
'analyzer': 'peliasPhrase', 'analyzer': 'peliasPhrase',
'type': 'phrase', 'type': 'phrase',
'slop': 2 'slop': 2,
'boost': 2
} }
} }
} }
@ -480,7 +484,8 @@ module.exports.tests.query = function(test, common) {
'query': 'soho grand', 'query': 'soho grand',
'analyzer': 'peliasPhrase', 'analyzer': 'peliasPhrase',
'type': 'phrase', 'type': 'phrase',
'slop': 2 'slop': 2,
'boost': 2
} }
} }
} }

Loading…
Cancel
Save