es分數_score衰減函數


 

1.按日期衰變

GET news/doc/_search
{
  "query" : {
    "function_score": {
        "query": {"multi_match" : {
                "query" : "生物醫葯",
                "fields": ["title"],
                "type":"phrase"
            }
          
        },
        "functions": [
            {
              "gauss": {
                "pdate": {
                  "origin": "2019-07-01",
                  "scale": "180d",
                  "decay": 0.5,
                  "offset": "30d"
                }
              }
            },
            { 
              "script_score": {
                "script": "return doc ['org_name'].value == '國信證券' ? 1.9 : 1.0"
             }
            }
        ],
        
      "score_mode": "sum",
      "boost_mode": "multiply"
  }},
  "_source":["title","org_name","pdate"]
}

 

 

 

 

 

 

 

 

 

參考資料:https://blog.csdn.net/weixin_40341116/article/details/81003513

https://www.scienjus.com/elasticsearch-function-score-query/


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM