【发布时间】:2017-08-07 10:38:17
【问题描述】:
我知道 Google 根据页面的重要性 (PageRank) 和页面对查询的相关性(类似于 td-idf)对搜索结果进行排序。 而且我还发现solr的打分公式是:
score(q,d) = coord(q,d) · queryNorm(q) · ∑ ( tf(t in d) · idf(t)2 · t.getBoost() · norm(t,d))
所以我想知道在 solr 中是否有类似“PageRank”的东西? 如果有,我该如何进行配置?
【问题讨论】: