Add channel weight #140
2 changed files with 14 additions and 2 deletions
|
@ -63,7 +63,7 @@ function getResults (input) {
|
|||
},
|
||||
},
|
||||
};
|
||||
const funcScore = { // 100 LBC adds 1 point to the score
|
||||
const funcScoreClaimWeight = { // 100 LBC adds 1 point to the score
|
||||
'function_score': {
|
||||
'script_score': {
|
||||
'script': {
|
||||
|
@ -72,6 +72,16 @@ function getResults (input) {
|
|||
},
|
||||
},
|
||||
};
|
||||
|
||||
const funcScoreChannelWeight = { // 100 LBC adds 1 point to the score
|
||||
'function_score': {
|
||||
'script_score': {
|
||||
'script': {
|
||||
'source': `${effectiveFactor} * doc['certificate_amount'].value`,
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
const matPhraseName = { // Match search text as phrase - Name
|
||||
'match_phrase': {
|
||||
'name': {
|
||||
|
@ -176,7 +186,8 @@ function getResults (input) {
|
|||
'bool': {
|
||||
'should': [
|
||||
conBoost,
|
||||
funcScore,
|
||||
funcScoreClaimWeight,
|
||||
funcScoreChannelWeight,
|
||||
],
|
||||
'must': [
|
||||
channelSearch,
|
||||
|
|
|
@ -161,6 +161,7 @@ function getClaimsSince (time) {
|
|||
`SELECT ` +
|
||||
`c.name,` +
|
||||
`p.name as channel,` +
|
||||
`p.effective_amount as certificate_amount` +
|
||||
`c.bid_state,` +
|
||||
`c.effective_amount,` +
|
||||
`c.claim_id as claimId,` +
|
||||
|
|
Loading…
Reference in a new issue