当遇到 received message larger than max (83886080 vs. 4194304) 错误的时候,一定要仔细分析,看是哪一段超过了限制,对于我们自己的代码例子来说:
Elasticsearch的默认打分公式是lucene的打分公式,主要分为两部分的计算,一部分是计算query部分的得分,另一部分是计算field部分的得分,
score(q,d) =
queryNorm(q)
· coord(q,d)
· ∑ (
tf(t in d)
· idf(t)²
· t.getBoost()
· norm(t,d)
) (t in q)
https://blog.csdn.net/molong1208/article/details/50623948
通过利用反射,可以在程序运行时处理任意类型。通过TypeOf方法取得取得类型信息,包装在Type中。通过ValueOf取得运行时的数据,包装在Value中。