栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

Elasticsearch查询时间提升导致顺序不足的结果

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Elasticsearch查询时间提升导致顺序不足的结果

# Index some test datacurl -XPUT "localhost:9200/test/doc/1" -d '{"title": "one"}'curl -XPUT "localhost:9200/test/doc/2" -d '{"title": "two"}'curl -XPUT "localhost:9200/test/doc/3" -d '{"title": "three"}'curl -XPUT "localhost:9200/test/doc/4" -d '{"title": "one two"}'curl -XPUT "localhost:9200/test/doc/5" -d '{"title": "one three"}'curl -XPUT "localhost:9200/test/doc/6" -d '{"title": "one two three"}'curl -XPUT "localhost:9200/test/doc/7" -d '{"title": "two three"}'curl -XPUT "localhost:9200/test/doc/8" -d '{"title": "none"}'curl -XPUT "localhost:9200/test/doc/9" -d '{"title": "one abc"}'curl -XPUT "localhost:9200/test/doc/10" -d '{"title": "two abc"}'curl -XPUT "localhost:9200/test/doc/11" -d '{"title": "three abc"}'curl -XPUT "localhost:9200/test/doc/12" -d '{"title": "one two abc"}'curl -XPUT "localhost:9200/test/doc/13" -d '{"title": "one two three abc"}'curl -XPUT "localhost:9200/test/doc/14" -d '{"title": "two three abc"}'# Make test data available for searchcurl -XPOST "localhost:9200/test/_refresh?pretty"# Search using function scorecurl -XPOST "localhost:9200/test/doc/_search?pretty" -d'{    "query": {        "function_score": { "query": {     "match": {         "title": "one two three"     } }, "functions": [     {         "filter": {  "query": {      "match": {          "title": "one"      }  }         },         "weight": 1     },     {         "filter": {  "query": {      "match": {          "title": "two"      }  }         },         "weight": 2     },     {         "filter": {  "query": {      "match": {          "title": "three"      }  }         },         "weight": 3     } ], "score_mode": "sum", "boost_mode": "replace"        }    },    "sort": [        { "_score": {     "order": "desc" }        }    ],    "from": "0",    "size": "100"}'


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/415537.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号