博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
搜索实现最新的文章排序在前
阅读量:6550 次
发布时间:2019-06-24

本文共 1928 字,大约阅读时间需要 6 分钟。

新闻搜索的时候,一般需要把最近的新闻排序在前,以突出时效性。

solr实现最新的文章排序在前

在用solr进行解决该问题的方法,很简单,solr已经提供相关函数进行了实现。

recip(rord(creationDate),1,1000,1000)。

关于recip函数定义

A reciprocal function with recip(x,m,a,b) implementing a/(m*x+b). m,a,b are constants, x is any numeric field or arbitrarily complex function.

When a and b are equal, and x>=0, this function has a maximum value of 1 that drops as x increases. Increasing the value of a and b together results in a movement of the entire function to a flatter part of the curve. These properties can make this an ideal function for boosting more recent documents when x is rord(datefield).

关于rord函数定义

The reverse ordering of what ord provides.

例如:

rord(myDateField) is a metric for how old a document is: the youngest document will return 1, the oldest document will return the total number of documents.

详情参看:

elasticsearch实现最新的文章排序在前

elasticsearch现在版本没有提供recip函数和rord函数,不能直接实现。但是我们可以依据 y = a / (m * x + b)函数来实现最近文章排序在前。各取值如下:m=3.16E-11, a=0.08, and b=0.05.

参数为:(0.08 / ((3.16*10^-11) * |x| + 0.05)) + 1.0 from 0 to 1000*60*60*24*365/

效果图如下:
实现json如下:

{  "query": {    "custom_filters_score": {      "query": { ...the main query... },      "params": {        "now": ...current time when query is run, expressed as milliseconds since the epoch...      },      "filters": [        {          "filter": {            "exists": {              "field": "date"            }          },          "script": "(0.08 / ((3.16*pow(10,-11)) * abs(now - doc['date'].date.getMillis()) + 0.05)) + 1.0"        }      ]    }  }}

java代码如下:

QueryStringQueryBuilder queryBuilder = new QueryStringQueryBuilder("中国");        queryBuilder.analyzer("ik").field("title");return new CustomFiltersScoreQueryBuilder(queryBuilder).add(query,    			"(0.08 / ((3.16*pow(10,-11)) * abs(now - doc['updatetime'].value) + 0.05)) + 1.0"				).param("now", System.currentTimeMillis()/1000l);

备注:我们updatetime存储的是一个毫秒级的长整数,具体情况具体分析。

以上方法来自于:

本文固定链接: 

转载地址:http://tyyco.baihongyu.com/

你可能感兴趣的文章
javascript:void(0) ,设置a链接无效,设置点击a页面不刷新,不跳动
查看>>
两台linux服务器之间实现挂载
查看>>
keyup与setInterval
查看>>
python --批量重命名文件名
查看>>
QQ三方登录
查看>>
NTP方式保证以时间戳同步可靠性
查看>>
开源的服务发现
查看>>
lucene.net 使用过程中的 几个注意事项(含termquery 和QueryParser 的区别)
查看>>
Android开发之音乐播放器的实现
查看>>
jeecg 3.5.2 新版本号4种首页风格 【经典风格,shortcut风格,ACE bootstrap风格,云桌面风格】...
查看>>
js封装好的模仿qq消息弹窗代码
查看>>
第四章 消息摘要算法--SHA
查看>>
LeetCode——Search in Rotated Sorted Array II
查看>>
LeetCode - Plus One
查看>>
django 带參数的 url
查看>>
python--dict和set类型--4
查看>>
【重磅】移动网络性能揭秘(下)--网络协议及性能提升实践
查看>>
Web Essentials之通用功能
查看>>
React Native ——实现一个简单的抓取github上的项目数据列表
查看>>
Lintcode 将整数A转换为B
查看>>