虽然es提供了高效的打分函数,但是在电商环境下还是不够用。大多数的用户还是关注排在前几名的结果,所以有灵活的打分机制尤为重要。如果能根据用户的需要展示搜索结果,那么转化率就尤其可观了。

本文中,我们先来看看es默认的评分配置,然后再定制几个评分。本文介绍到的内容可以帮助你做一个用户定制结果的评分。


es默认采用了lucene的评分公式,用正的浮点数_score来表示相关得分。这个_score 越高,文档的相关性也就越高。一个查询子句会为每个文档生成一个_score,计算取决于查询子句的类型。

查询子句服务于不同的目的:模糊查询的_score 
取决于原始的搜索词与发现的词的拼写的相似度。词的查询会考虑查到的词的比例。一般情况,相关度都是指计算全文的field的内容与全文query串的相关度。

es中用的标准的相似度算法就是词频/逆文档频率,即tf/idf,考虑了如下要素:

要素 描述
tf 词频
idf 逆文档频率
coord 匹配到多个词的处理策略
lengthnorm 短field的处理策略
querynorm query标准化因素
boost(index) index阶段的boost要素
boost(query) query阶段的boost要素

上述要素决定了elasticsearch中的决定文档得分的处理要素。

词频(TF):词频是对一个词在文档的内容中出现次数的计量。如果出现次数多,得分就高,该文档与查询相关的可能性就高。

逆文档频率(IDF):逆文档频率是对搜索的词在文档集中出现的频率的衡量。如果一个搜索词在很多文档中都普遍的出现,(这个词)的得分就比较低。那种稀有词如果在文档中频繁出现,会把评分值boost的较高。

共现因子(Coord):共现因子是对出现多个搜索词的衡量,query中的词共现的越多,整体的得分就越高。比如搜索这两个词“woolen(羊毛)”&“jacket(夹克)”。两个词放在一起搜也没啥问题:在内部会转化为bool查询,每个词都会单独的去搜索。两个词都包含的文档比那些只包含一个词的文档得分高。如果你给query的权重是2,那么两个词都包含的词的coord是2*2 = 4。只包含一个词的coord权重就是2 * 1 = 2。

长度标准化(lengthnorm):会衡量短field的匹配,给出更高的权重。

译者:lucene考虑了文章的长度,因为考虑到更长的文章会包含更多的词,从而通过lengthnorm进行标准化。所以lucene会跟偏向于短标题。 
比如:title,短文本的标准化因子0.5,而较长的标题可能只有0.01。所以标准化因子可能极大的影响得分。

比如,如果搜索词在title中,那它比在content中更相关,得分更高。

query标准化(querynorm):虽然不直接与文档相关度相关,querynorm在你对query类型的组合时,可以对query进行衡量。

Index时boost(index time boost)&Query时boost(query time boost):可以在索引时和查询时进行boost。对特定的field进行boost时,会让得分的计算更加明显。

Lucene的评分计算:默认的es的得分算法是布尔检索与空间向量模型的组合。通过布尔模型的文档会通过空间向量模型进行下一步的评分计算。

得分公式如下:

score(q,d)=

queryNorm(q)∗coord(q,d)∗∑t∈q(tf(t∈q)∗idf(t)2∗t.getBoost()∗norm(t,d))

我们来看看我们如何用这些要素来计算一个文档的得分,首先我们先来看看调试es中query的工具。打开query中的explain,你就可以得到上述的得分因素中的每一个详细解释,以及该文档的最终得分。我们不推荐在最终的产品中使用这个结果,但是你在开发中debug,调整query时还是很有用的。

调整_score 最有用的工具就是function_score

实际上es为每个匹配提供了很多得分计算方法。可以使用custom_score 以及脚本来获取特定数字域的得分。例如:

“script”: 
“_score * doc[‘my_numeric_field’].value”

我们这里my_numeric_field 乘上默认的_score进行加权。也可以使用custom_filers_score_query ,可以应用过滤器来限制结果集,在用脚本或者boost来为过滤后的文档分配一个boost。相似的也可以应用custom_boost_factor 来乘上默认的打分来给query一个boost的值。在es的0.19.0版本中,有一个新query可以把所有的要素都融合进function_score。再附加上内嵌的功能,用脚本可以实现更多功能。用function_score 你首先需要定义一个query,然后就可以使用任意的过滤器了。使用过滤器来限制达到你标准的结果。这样就可以不计算那些你不想要结果得分了。如果你选择这种boost模式,你可以通过你定制的函数决定最后的得分。你可以用默认的结果直接代替得分,或者通过你函数的计算来乘上默认的搜索结果。

Elasticsearch提供了结合多个函数结果来计算得分的多种函数的能力。也有多种用 function_score query来计算多找要素的方法,其中有:时间要素、距离特定点的距离、热门程度等。我们现在在来进一步的深入了解给数据集的做相关度的tuning。

script_score提供了通过script表达式来定义一个评分函数的功能。再加上field_value_factor,你可以获得一个特定field的值,这样获得的这个field的值可以直接参与最终的评分的计算。DECAY_FUNCTION提供得分的衰减模式。

例子1:你想找到一个地理坐标点的距离,5km以内的点权重要是5km外的点的权重的三倍。 
例子2:考虑发布时间的文档,比如一个文档的头15天得分为7,发布时间为25的话,得分就应该为3。这样的例子都可以使用DECAY_FUNCTION以及加权函数和随机函数。你也可以写一个定制函数来应用上述的那些函数,并可以在此基础上进行定制。

如上述,我们可以运用多种函数来计算一个得分值,然后再用score_modeboost_mode来融合这些函数的输出。score_mode 定义了你定义的单独的函数怎样融合,boost_mode 定义了你如何给默认的得分一个特定的得分函数或者连续加或乘所有的函数结果。如下列出了boost_mode 和 score_mode 。 
boost_mode的功能 
多种query得分以及函数得分(默认的)的加和加上函数得分的平均,平均了函数得分,定制的得分的最小值首先代替query得分,函数得分的最大值代替query得分和函数得分的大者。

score_mode中的可选项

模式 功能
multiply 乘函数打分值(默认)
sum 加和
avg 平均值
first 应用filter匹配上的第一个函数值
min 采用函数得分的最小值
max 采用函数得分的最大值

我们现在来做一个完整的例子,我们自己写一个按照热度递减的排序。首先索引得分,假定一个特定的item如果他的热度高,对应的排序就较高。简单的方式就是定义一个function_score query,用内建的field_value_factor 函数来介入得分:

POST /ecomercedata/gadgets/_search
{"explain": true, "query": {"function_score": {"query": {"match_all": {}},"functions": [{"field_value_factor": {"field": "rating"}}],"boost_mode": "multiply"}}
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

我们来review一下上述的代码,t.getboost() 以及boost 不可见,因为他们都在querynorm中。可以尝试给特定的field加boost值,可以看到匹配到的在explanation中有更高的querynorm得分。

{{   "took": 22,"timed_out": false,"_shards": {"total": 1,"successful": 1,"failed": 0},"hits": {"total": 9,"max_score": 9,"hits": [{"_shard": 0,"_node": "477kWUQVR2eiLpIQEN4vFw","_index": "ecomercedata","_type": "gadgets","_id": "nKk9DfRnTDyUU80cepXRrw","_score": 9,"_source": {"name": "MacBookPro","category": "Laptop","brand": "Apple","rating": 9,"prize": 1299,"piecesSold": 9500,"dateOfRelease": "2005-02-01"},"_explanation": {"value": 9,"description": "function score, product of:","details": [{"value": 1,"description": "ConstantScore(*:*), product of:","details": [{"value": 1,"description": "boost"},{"value": 1,"description": "queryNorm"}]},{"value": 9,"description": "Math.min of","details": [{"value": 9,"description": "function score, score mode [multiply]","details": [{"value": 9,"description": "function score, product of:","details": [{"value": 1,"description": "match filter: *:*"},{"value": 9,"description": "field value function: (doc['rating'].value * factor=1.0)","details": [{"value": 1,"description": "ConstantScore(*:*), product of:","details": [{"value": 1,"description": "boost"},{"value": 1,"description": "queryNorm"}]}]}]}]},{"value": 3.4028235e+38,"description": "maxBoost"}]},{"value": 1,"description": "queryBoost"}]}},{"_shard": 0,"_node": "477kWUQVR2eiLpIQEN4vFw","_index": "ecomercedata","_type": "gadgets","_id": "KNycQwC5TcSmhXPBdKgW3g","_score": 9,"_source": {"name": "Ipad","category": "Tablet","brand": "Apple","rating": 9,"prize": 600,"piecesSold": 9500,"dateOfRelease": "2005-07-01"},"_explanation": {"value": 9,"description": "function score, product of:","details": [{"value": 1,"description": "ConstantScore(*:*), product of:","details": [{"value": 1,"description": "boost"},{"value": 1,"description": "queryNorm"}]},{"value": 9,"description": "Math.min of","details": [{"value": 9,"description": "function score, score mode [multiply]","details": [{"value": 9,"description": "function score, product of:","details": [{"value": 1,"description": "match filter: *:*"},{"value": 9,"description": "field value function: (doc['rating'].value * factor=1.0)","details": [{"value": 1,"description": "ConstantScore(*:*), product of:","details": [{"value": 1,"description": "boost"},{"value": 1,"description": "queryNorm"}]}]}]}]},{"value": 3.4028235e+38,"description": "maxBoost"}]},{"value": 1,"description": "queryBoost"}]}},{"_shard": 0,"_node": "477kWUQVR2eiLpIQEN4vFw","_index": "ecomercedata","_type": "gadgets","_id": "IfTr4n90Tbez-t26Iu6JCg","_score": 8,"_source": {"name": "MacBookAir","category": "Laptop","brand": "Apple","rating": 8,"prize": 1099,"piecesSold": 8700,"dateOfRelease": "2006-05-01"},"_explanation": {"value": 8,"description": "function score, product of:","details": [{"value": 1,"description": "ConstantScore(*:*), product of:","details": [{"value": 1,"description": "boost"},{"value": 1,"description": "queryNorm"}]},{"value": 8,"description": "Math.min of","details": [{"value": 8,"description": "function score, score mode [multiply]","details": [{"value": 8,"description": "function score, product of:","details": [{"value": 1,"description": "match filter: *:*"},{"value": 8,"description": "field value function: (doc['rating'].value * factor=1.0)","details": [{"value": 1,"description": "ConstantScore(*:*), product of:","details": [{"value": 1,"description": "boost"},{"value": 1,"description": "queryNorm"}]}]}]}]},{"value": 3.4028235e+38,"description": "maxBoost"}]},{"value": 1,"description": "queryBoost"}]}},{"_shard": 0,"_node": "477kWUQVR2eiLpIQEN4vFw","_index": "ecomercedata","_type": "gadgets","_id": "90hw7WyKSu2X0YAk3NBTMQ","_score": 8,"_source": {"name": "ATIVBook","category": "Laptop","brand": "Samsung","rating": 8,"prize": 1899,"piecesSold": 3500,"dateOfRelease": "2014-05-01"},"_explanation": {"value": 8,"description": "function score, product of:","details": [{"value": 1,"description": "ConstantScore(*:*), product of:","details": [{"value": 1,"description": "boost"},{"value": 1,"description": "queryNorm"}]},{"value": 8,"description": "Math.min of","details": [{"value": 8,"description": "function score, score mode [multiply]","details": [{"value": 8,"description": "function score, product of:","details": [{"value": 1,"description": "match filter: *:*"},{"value": 8,"description": "field value function: (doc['rating'].value * factor=1.0)","details": [{"value": 1,"description": "ConstantScore(*:*), product of:","details": [{"value": 1,"description": "boost"},{"value": 1,"description": "queryNorm"}]}]}]}]},{"value": 3.4028235e+38,"description": "maxBoost"}]},{"value": 1,"description": "queryBoost"}]}},{"_shard": 0,"_node": "477kWUQVR2eiLpIQEN4vFw","_index": "ecomercedata","_type": "gadgets","_id": "xquXInoJSSOnPwuzrOTO8A","_score": 8,"_source": {"name": "GalaxyTab","category": "Tablet","brand": "Samsung","rating": 8,"prize": 550,"piecesSold": 8500,"dateOfRelease": "2007-07-01"},"_explanation": {"value": 8,"description": "function score, product of:","details": [{"value": 1,"description": "ConstantScore(*:*), product of:","details": [{"value": 1,"description": "boost"},{"value": 1,"description": "queryNorm"}]},{"value": 8,"description": "Math.min of","details": [{"value": 8,"description": "function score, score mode [multiply]","details": [{"value": 8,"description": "function score, product of:","details": [{"value": 1,"description": "match filter: *:*"},{"value": 8,"description": "field value function: (doc['rating'].value * factor=1.0)","details": [{"value": 1,"description": "ConstantScore(*:*), product of:","details": [{"value": 1,"description": "boost"},{"value": 1,"description": "queryNorm"}]}]}]}]},{"value": 3.4028235e+38,"description": "maxBoost"}]},{"value": 1,"description": "queryBoost"}]}},{"_shard": 0,"_node": "477kWUQVR2eiLpIQEN4vFw","_index": "ecomercedata","_type": "gadgets","_id": "qnSLIKIWTsyjRdM0dNcrWg","_score": 8,"_source": {"name": "Iphone","category": "Mobile","brand": "Apple","rating": 8,"prize": 60,"piecesSold": 28000,"dateOfRelease": "2002-03-01"},"_explanation": {"value": 8,"description": "function score, product of:","details": [{"value": 1,"description": "ConstantScore(*:*), product of:","details": [{"value": 1,"description": "boost"},{"value": 1,"description": "queryNorm"}]},{"value": 8,"description": "Math.min of","details": [{"value": 8,"description": "function score, score mode [multiply]","details": [{"value": 8,"description": "function score, product of:","details": [{"value": 1,"description": "match filter: *:*"},{"value": 8,"description": "field value function: (doc['rating'].value * factor=1.0)","details": [{"value": 1,"description": "ConstantScore(*:*), product of:","details": [{"value": 1,"description": "boost"},{"value": 1,"description": "queryNorm"}]}]}]}]},{"value": 3.4028235e+38,"description": "maxBoost"}]},{"value": 1,"description": "queryBoost"}]}},{"_shard": 0,"_node": "477kWUQVR2eiLpIQEN4vFw","_index": "ecomercedata","_type": "gadgets","_id": "uq5kDPYlTQC6mRBJDtS2lQ","_score": 8,"_source": {"name": "Xperia","category": "Mobile","brand": "Sony","rating": 8,"prize": 70,"piecesSold": 24000,"dateOfRelease": "2004-03-01"},"_explanation": {"value": 8,"description": "function score, product of:","details": [{"value": 1,"description": "ConstantScore(*:*), product of:","details": [{"value": 1,"description": "boost"},{"value": 1,"description": "queryNorm"}]},{"value": 8,"description": "Math.min of","details": [{"value": 8,"description": "function score, score mode [multiply]","details": [{"value": 8,"description": "function score, product of:","details": [{"value": 1,"description": "match filter: *:*"},{"value": 8,"description": "field value function: (doc['rating'].value * factor=1.0)","details": [{"value": 1,"description": "ConstantScore(*:*), product of:","details": [{"value": 1,"description": "boost"},{"value": 1,"description": "queryNorm"}]}]}]}]},{"value": 3.4028235e+38,"description": "maxBoost"}]},{"value": 1,"description": "queryBoost"}]}},{"_shard": 0,"_node": "477kWUQVR2eiLpIQEN4vFw","_index": "ecomercedata","_type": "gadgets","_id": "YdtFFxICR-6nMxNcQmWoaQ","_score": 6,"_source": {"name": "Inspiron","category": "Laptop","brand": "Dell","rating": 6,"prize": 700,"piecesSold": 4600,"dateOfRelease": "2008-03-01"},"_explanation": {"value": 6,"description": "function score, product of:","details": [{"value": 1,"description": "ConstantScore(*:*), product of:","details": [{"value": 1,"description": "boost"},{"value": 1,"description": "queryNorm"}]},{"value": 6,"description": "Math.min of","details": [{"value": 6,"description": "function score, score mode [multiply]","details": [{"value": 6,"description": "function score, product of:","details": [{"value": 1,"description": "match filter: *:*"},{"value": 6,"description": "field value function: (doc['rating'].value * factor=1.0)","details": [{"value": 1,"description": "ConstantScore(*:*), product of:","details": [{"value": 1,"description": "boost"},{"value": 1,"description": "queryNorm"}]}]}]}]},{"value": 3.4028235e+38,"description": "maxBoost"}]},{"value": 1,"description": "queryBoost"}]}},{"_shard": 0,"_node": "477kWUQVR2eiLpIQEN4vFw","_index": "ecomercedata","_type": "gadgets","_id": "MjSPJ9hqTbu8U6PfyMrl4A","_score": 6,"_source": {"name": "Lumia","category": "Mobile","brand": "Nokia","rating": 6,"prize": 50,"piecesSold": 12000,"dateOfRelease": "2009-03-01"},"_explanation": {"value": 6,"description": "function score, product of:","details": [{"value": 1,"description": "ConstantScore(*:*), product of:","details": [{"value": 1,"description": "boost"},{"value": 1,"description": "queryNorm"}]},{"value": 6,"description": "Math.min of","details": [{"value": 6,"description": "function score, score mode [multiply]","details": [{"value": 6,"description": "function score, product of:","details": [{"value": 1,"description": "match filter: *:*"},{"value": 6,"description": "field value function: (doc['rating'].value * factor=1.0)","details": [{"value": 1,"description": "ConstantScore(*:*), product of:","details": [{"value": 1,"description": "boost"},{"value": 1,"description": "queryNorm"}]}]}`]}]},{"value": 3.4028235e+38,"description": "maxBoost"}]},{"value": 1,"description": "queryBoost"}]}}]}
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268
  • 269
  • 270
  • 271
  • 272
  • 273
  • 274
  • 275
  • 276
  • 277
  • 278
  • 279
  • 280
  • 281
  • 282
  • 283
  • 284
  • 285
  • 286
  • 287
  • 288
  • 289
  • 290
  • 291
  • 292
  • 293
  • 294
  • 295
  • 296
  • 297
  • 298
  • 299
  • 300
  • 301
  • 302
  • 303
  • 304
  • 305
  • 306
  • 307
  • 308
  • 309
  • 310
  • 311
  • 312
  • 313
  • 314
  • 315
  • 316
  • 317
  • 318
  • 319
  • 320
  • 321
  • 322
  • 323
  • 324
  • 325
  • 326
  • 327
  • 328
  • 329
  • 330
  • 331
  • 332
  • 333
  • 334
  • 335
  • 336
  • 337
  • 338
  • 339
  • 340
  • 341
  • 342
  • 343
  • 344
  • 345
  • 346
  • 347
  • 348
  • 349
  • 350
  • 351
  • 352
  • 353
  • 354
  • 355
  • 356
  • 357
  • 358
  • 359
  • 360
  • 361
  • 362
  • 363
  • 364
  • 365
  • 366
  • 367
  • 368
  • 369
  • 370
  • 371
  • 372
  • 373
  • 374
  • 375
  • 376
  • 377
  • 378
  • 379
  • 380
  • 381
  • 382
  • 383
  • 384
  • 385
  • 386
  • 387
  • 388
  • 389
  • 390
  • 391
  • 392
  • 393
  • 394
  • 395
  • 396
  • 397
  • 398
  • 399
  • 400
  • 401
  • 402
  • 403
  • 404
  • 405
  • 406
  • 407
  • 408
  • 409
  • 410
  • 411
  • 412
  • 413
  • 414
  • 415
  • 416
  • 417
  • 418
  • 419
  • 420
  • 421
  • 422
  • 423
  • 424
  • 425
  • 426
  • 427
  • 428
  • 429
  • 430
  • 431
  • 432
  • 433
  • 434
  • 435
  • 436
  • 437
  • 438
  • 439
  • 440
  • 441
  • 442
  • 443
  • 444
  • 445
  • 446
  • 447
  • 448
  • 449
  • 450
  • 451
  • 452
  • 453
  • 454
  • 455
  • 456
  • 457
  • 458
  • 459
  • 460
  • 461
  • 462
  • 463
  • 464
  • 465
  • 466
  • 467
  • 468
  • 469
  • 470
  • 471
  • 472
  • 473
  • 474
  • 475
  • 476
  • 477
  • 478
  • 479
  • 480
  • 481
  • 482
  • 483
  • 484
  • 485
  • 486
  • 487
  • 488
  • 489
  • 490
  • 491
  • 492
  • 493
  • 494
  • 495
  • 496
  • 497
  • 498
  • 499
  • 500
  • 501
  • 502
  • 503
  • 504
  • 505
  • 506
  • 507
  • 508
  • 509
  • 510
  • 511
  • 512
  • 513
  • 514
  • 515
  • 516
  • 517
  • 518
  • 519
  • 520
  • 521
  • 522
  • 523
  • 524
  • 525
  • 526
  • 527
  • 528
  • 529
  • 530
  • 531
  • 532
  • 533
  • 534
  • 535
  • 536
  • 537
  • 538
  • 539
  • 540
  • 541
  • 542
  • 543
  • 544
  • 545
  • 546
  • 547
  • 548
  • 549
  • 550
  • 551
  • 552
  • 553
  • 554
  • 555
  • 556
  • 557
  • 558
  • 559
  • 560
  • 561
  • 562
  • 563
  • 564
  • 565
  • 566
  • 567
  • 568
  • 569
  • 570
  • 571
  • 572
  • 573
  • 574
  • 575
  • 576
  • 577
  • 578
  • 579
  • 580
  • 581
  • 582
  • 583
  • 584
  • 585
  • 586
  • 587
  • 588
  • 589
  • 590
  • 591
  • 592
  • 593
  • 594
  • 595
  • 596
  • 597
  • 598
  • 599
  • 600
  • 601
  • 602
  • 603
  • 604
  • 605
  • 606
  • 607
  • 608
  • 609
  • 610
  • 611
  • 612
  • 613
  • 614
  • 615
  • 616
  • 617
  • 618
  • 619
  • 620
  • 621
  • 622
  • 623
  • 624
  • 625
  • 626
  • 627
  • 628
  • 629
  • 630
  • 631
  • 632
  • 633
  • 634
  • 635
  • 636
  • 637
  • 638
  • 639
  • 640
  • 641
  • 642
  • 643
  • 644
  • 645
  • 646
  • 647
  • 648
  • 649
  • 650
  • 651
  • 652
  • 653
  • 654
  • 655
  • 656
  • 657
  • 658
  • 659
  • 660
  • 661
  • 662
  • 663
  • 664
  • 665
  • 666
  • 667
  • 668
  • 669
  • 670
  • 671
  • 672
  • 673
  • 674
  • 675
  • 676
  • 677
  • 678
  • 679
  • 680
  • 681
  • 682
  • 683
  • 684
  • 685
  • 686
  • 687
  • 688
  • 689
  • 690
  • 691
  • 692
  • 693
  • 694
  • 695
  • 696
  • 697
  • 698
  • 699
  • 700
  • 701
  • 702
  • 703
  • 704
  • 705
  • 706
  • 707
  • 708
  • 709
  • 710
  • 711
  • 712
  • 713
  • 714
  • 715
  • 716
  • 717
  • 718
  • 719
  • 720
  • 721
  • 722
  • 723
  • 724
  • 725
  • 726
  • 727
  • 728
  • 729
  • 730
  • 731
  • 732
  • 733
  • 734
  • 735
  • 736
  • 737
  • 738
  • 739
  • 740
  • 741
  • 742
  • 743
  • 744
  • 745
  • 746
  • 747
  • 748
  • 749
  • 750
  • 751
  • 752
  • 753
  • 754
  • 755
  • 756
  • 757
  • 758
  • 759
  • 760
  • 761
  • 762
  • 763
  • 764
  • 765
  • 766
  • 767
  • 768
  • 769
  • 770
  • 771
  • 772
  • 773
  • 774
  • 775
  • 776
  • 777
  • 778
  • 779
  • 780
  • 781
  • 782
  • 783
  • 784
  • 785
  • 786
  • 787
  • 788
  • 789
  • 790
  • 791
  • 792
  • 793
  • 794
  • 795
  • 796
  • 797
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268
  • 269
  • 270
  • 271
  • 272
  • 273
  • 274
  • 275
  • 276
  • 277
  • 278
  • 279
  • 280
  • 281
  • 282
  • 283
  • 284
  • 285
  • 286
  • 287
  • 288
  • 289
  • 290
  • 291
  • 292
  • 293
  • 294
  • 295
  • 296
  • 297
  • 298
  • 299
  • 300
  • 301
  • 302
  • 303
  • 304
  • 305
  • 306
  • 307
  • 308
  • 309
  • 310
  • 311
  • 312
  • 313
  • 314
  • 315
  • 316
  • 317
  • 318
  • 319
  • 320
  • 321
  • 322
  • 323
  • 324
  • 325
  • 326
  • 327
  • 328
  • 329
  • 330
  • 331
  • 332
  • 333
  • 334
  • 335
  • 336
  • 337
  • 338
  • 339
  • 340
  • 341
  • 342
  • 343
  • 344
  • 345
  • 346
  • 347
  • 348
  • 349
  • 350
  • 351
  • 352
  • 353
  • 354
  • 355
  • 356
  • 357
  • 358
  • 359
  • 360
  • 361
  • 362
  • 363
  • 364
  • 365
  • 366
  • 367
  • 368
  • 369
  • 370
  • 371
  • 372
  • 373
  • 374
  • 375
  • 376
  • 377
  • 378
  • 379
  • 380
  • 381
  • 382
  • 383
  • 384
  • 385
  • 386
  • 387
  • 388
  • 389
  • 390
  • 391
  • 392
  • 393
  • 394
  • 395
  • 396
  • 397
  • 398
  • 399
  • 400
  • 401
  • 402
  • 403
  • 404
  • 405
  • 406
  • 407
  • 408
  • 409
  • 410
  • 411
  • 412
  • 413
  • 414
  • 415
  • 416
  • 417
  • 418
  • 419
  • 420
  • 421
  • 422
  • 423
  • 424
  • 425
  • 426
  • 427
  • 428
  • 429
  • 430
  • 431
  • 432
  • 433
  • 434
  • 435
  • 436
  • 437
  • 438
  • 439
  • 440
  • 441
  • 442
  • 443
  • 444
  • 445
  • 446
  • 447
  • 448
  • 449
  • 450
  • 451
  • 452
  • 453
  • 454
  • 455
  • 456
  • 457
  • 458
  • 459
  • 460
  • 461
  • 462
  • 463
  • 464
  • 465
  • 466
  • 467
  • 468
  • 469
  • 470
  • 471
  • 472
  • 473
  • 474
  • 475
  • 476
  • 477
  • 478
  • 479
  • 480
  • 481
  • 482
  • 483
  • 484
  • 485
  • 486
  • 487
  • 488
  • 489
  • 490
  • 491
  • 492
  • 493
  • 494
  • 495
  • 496
  • 497
  • 498
  • 499
  • 500
  • 501
  • 502
  • 503
  • 504
  • 505
  • 506
  • 507
  • 508
  • 509
  • 510
  • 511
  • 512
  • 513
  • 514
  • 515
  • 516
  • 517
  • 518
  • 519
  • 520
  • 521
  • 522
  • 523
  • 524
  • 525
  • 526
  • 527
  • 528
  • 529
  • 530
  • 531
  • 532
  • 533
  • 534
  • 535
  • 536
  • 537
  • 538
  • 539
  • 540
  • 541
  • 542
  • 543
  • 544
  • 545
  • 546
  • 547
  • 548
  • 549
  • 550
  • 551
  • 552
  • 553
  • 554
  • 555
  • 556
  • 557
  • 558
  • 559
  • 560
  • 561
  • 562
  • 563
  • 564
  • 565
  • 566
  • 567
  • 568
  • 569
  • 570
  • 571
  • 572
  • 573
  • 574
  • 575
  • 576
  • 577
  • 578
  • 579
  • 580
  • 581
  • 582
  • 583
  • 584
  • 585
  • 586
  • 587
  • 588
  • 589
  • 590
  • 591
  • 592
  • 593
  • 594
  • 595
  • 596
  • 597
  • 598
  • 599
  • 600
  • 601
  • 602
  • 603
  • 604
  • 605
  • 606
  • 607
  • 608
  • 609
  • 610
  • 611
  • 612
  • 613
  • 614
  • 615
  • 616
  • 617
  • 618
  • 619
  • 620
  • 621
  • 622
  • 623
  • 624
  • 625
  • 626
  • 627
  • 628
  • 629
  • 630
  • 631
  • 632
  • 633
  • 634
  • 635
  • 636
  • 637
  • 638
  • 639
  • 640
  • 641
  • 642
  • 643
  • 644
  • 645
  • 646
  • 647
  • 648
  • 649
  • 650
  • 651
  • 652
  • 653
  • 654
  • 655
  • 656
  • 657
  • 658
  • 659
  • 660
  • 661
  • 662
  • 663
  • 664
  • 665
  • 666
  • 667
  • 668
  • 669
  • 670
  • 671
  • 672
  • 673
  • 674
  • 675
  • 676
  • 677
  • 678
  • 679
  • 680
  • 681
  • 682
  • 683
  • 684
  • 685
  • 686
  • 687
  • 688
  • 689
  • 690
  • 691
  • 692
  • 693
  • 694
  • 695
  • 696
  • 697
  • 698
  • 699
  • 700
  • 701
  • 702
  • 703
  • 704
  • 705
  • 706
  • 707
  • 708
  • 709
  • 710
  • 711
  • 712
  • 713
  • 714
  • 715
  • 716
  • 717
  • 718
  • 719
  • 720
  • 721
  • 722
  • 723
  • 724
  • 725
  • 726
  • 727
  • 728
  • 729
  • 730
  • 731
  • 732
  • 733
  • 734
  • 735
  • 736
  • 737
  • 738
  • 739
  • 740
  • 741
  • 742
  • 743
  • 744
  • 745
  • 746
  • 747
  • 748
  • 749
  • 750
  • 751
  • 752
  • 753
  • 754
  • 755
  • 756
  • 757
  • 758
  • 759
  • 760
  • 761
  • 762
  • 763
  • 764
  • 765
  • 766
  • 767
  • 768
  • 769
  • 770
  • 771
  • 772
  • 773
  • 774
  • 775
  • 776
  • 777
  • 778
  • 779
  • 780
  • 781
  • 782
  • 783
  • 784
  • 785
  • 786
  • 787
  • 788
  • 789
  • 790
  • 791
  • 792
  • 793
  • 794
  • 795
  • 796
  • 797

你觉得我们应该在得分计算中考虑产品的时间要素。可能新的产品比起那些较老的产品应该赋更高的权重,然后把这些与上述的热度要素进行融合。我们这样写:

POST /ecomercedata/gadgets/_search{ "query": {"function_score": {"query": {"match_all": {}},"functions": [{"field_value_factor": {"field": "rating"}},{"field_value_factor": {"field": "dateOfRelease",}}],"boost_mode": "replace","score_mode" : "multiply"      }}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46

这样改得分值涨到了一个较高的分值,有多种避免这种结果的方式,我们在赋权重的时候应该注意控制权重。也可以使用定制的脚本来计算得分值,下篇博客我们继续讨论。

转自 地址

运用打分和Boost优化Elasticsearch搜索结果相关推荐

  1. 【ES】ElasticSearch搜索的底层原理?倒排索引和TF-IDF打分算法

    Elasticsearch搜索的底层原理 ES搜索是分词后,每个字可以利用FST高速找到倒排索引的位置,并迅速获取文档id列表,大大的提升了性能,减少磁盘IO. ES的搜索原理就是倒排索引 + TF- ...

  2. elasticsearch搜索分数自定义以及相关度计算相关

    elasticsearch搜索分数自定义以及相关度计算相关 es通过其score字段对搜索结果进行排序 在进行业务开发时通常其默认的分数计算是不符合预期的. 最简单的方法是通过boost字段来对每一个 ...

  3. 分布式搜索elasticsearch搜索功能【进阶】

    elasticsearch搜索功能 分布式搜索elasticsearch搜索功能 1.DSL查询文档 1.1 DSL查询分类 1.2 全文检索查询 1.3 精准查询 1.4 地理坐标查询 1.5 组合 ...

  4. 22_深度探秘搜索技术_手动控制全文检索(match)结果的精准度、基于boost的细粒度搜索条件实现权重控制...

    本文章收录于[Elasticsearch 系列],将详细的讲解 Elasticsearch 整个大体系,包括但不限于ELK讲解.ES调优.海量数据处理等 本博客以例子为主线,来说明在elasticse ...

  5. ElasticSearch系列六:ElasticSearch搜索技术深入讲解(一)

    1.match 手工控制搜索结果精准度 GET /product_db/_search {"query": {"match": {"subTitle& ...

  6. kotlin + springboot启用elasticsearch搜索

    参考自: http://how2j.cn/k/search-engine/search-engine-springboot/1791.html?p=78908 工具版本: elasticsearch ...

  7. 分布式搜索elasticsearch搜索功能【深入】

    elasticsearch搜索功能[深入] 分布式搜索elasticsearch搜索功能[深入] 1.数据聚合 1.1 聚合的种类 1.2 DSL实现聚合 1.2.1 Bucket聚合 1.2.2 M ...

  8. 从提高 Elasticsearch 搜索体验说开去......

    Elasticsearch 最少必要知识实战教程直播回放 1.实战问题 球友提问:怎么搜索才能使得结果是最好的呢? 我这边一个搜索功能,实现做法就是将用ik分词器配合multi查询实现的. 中途也追加 ...

  9. 博客优化 搜索SEO优化 提高搜索量

    csdn博客文章SEO优化提高搜索量,博客优化方法,搜索优化增加博客文章阅读量生成百度快照 .博客文章主要是会推送到百度,百度爬虫生成网页快照,这样的话百度搜索引擎会在搜索结果根据权重排名展示. 博客 ...

最新文章

  1. osx java 6_OSX 10.11 java 6不兼容怎么办?OSX 10.11 java 6不兼容解决办法
  2. 【Linux抓包工具之tcpdump】
  3. 移动端布局的5种方式
  4. MS SQL入门基础:系统数据库
  5. phpexcel.php linux,phpexcel在linux系统报错如何解决
  6. pythonapp自动化_移动App Appium自动化测试教程Appium+Python 【2018年新】
  7. 处理FTP上传成功推理
  8. 门槛,才是做生意持久盈利的基础
  9. codeforces1013E - DP
  10. python遥感影像分类代码_Python 实现遥感影像波段组合的示例代码
  11. Android -- 背景虚化
  12. Python语言基本语法元素
  13. 如何制作多合一Windows镜像
  14. 【keytool】keytool查看jks证书详情
  15. 一维非齐次热传导方程的紧致差分格式(附Matlab代码)
  16. ISA防火墙的基础应用与配置
  17. 计算机一级考试ppt知识点,计算机一级考试考点:PPT演示文稿
  18. 精美卡通儿童教育班会课件PPT模板
  19. 刷屏!日本内政部向国民宣传5G的短视频:未来将是这样!
  20. 在linux下设置SSH空闲超时退出时间

热门文章

  1. 【操作系统笔记6】CPU调度
  2. SQL注入闯关第二关---第四关
  3. 如何在Surface Pro平板电脑上重新加载Windows 8.1
  4. 从“小胡子”到 vue 插值语法
  5. 应该不遗余力的打击劣质开源
  6. Windows 8以后的Windows操作系统关闭Driver Verifier的方法(disable Driver Verifier)
  7. zzulioj1148: 组合三位数之一
  8. mysql中计算时间差
  9. 软件测试用例设计方法-场景法
  10. 计算机作文素材,雅思写作素材积累之计算机相关表达