当前位置:网站首页>Es search content top
Es search content top
2022-06-24 15:16:00 【Mongolia Shangdan 2】
Sometimes , We may need human intervention ES Search results for , Put the specified content at the top ,ES Provides pinned Syntax to implement this function .
GET article_search/_search
{
"query" : {
"pinned":{
"ids" : ["1234567"],
"organic": {
"match" : {
"title": " Making clouds "
}
}
}
},
"size" : 10,
"from" : 0
}pinned Inside ids Represents the document to be placed at the top id list .
organic Is an arbitrary query statement . We can replace it with a complex query :
GET article_search/_search
{
"query" : {
"pinned":{
"ids" : ["1234567"],
"organic": {
"bool" : {
"should" : [
{
"match_phrase" : {
"title" : {
"query" : " Making clouds ",
"boost" : 2,
"slop" : 4
}
}
},
{
"multi_match" : {
"query" : " Making clouds ",
"type" : "best_fields",
"fields" : ["title", "plain"],
"minimum_should_match" : "20%",
"boost" : 1
}
}
],
"minimum_should_match" : 1
}
}
}
},
"size" : 10,
"from" : 0
}Look at the document and say it seems to be from ES 7.4 This syntax is supported in version .
边栏推荐
- 六月集训(第24天) —— 线段树
- Keras deep learning practice (11) -- visual neural network middle layer output
- Restoring to an earlier version in CVS
- How do individuals open accounts for stock speculation? Is it safe to open accounts for stock speculation
- 证券账户理财安全吗??
- Which securities company is better and safer for great wisdom to choose when opening an account
- `Thymeleaf ` template engine comprehensive analysis
- 左手代码,右手开源,开源路上的一份子
- CVPR2022 | 可精简域适应
- ESP32系列--ESP32各个系列对比
猜你喜欢

He is also a junior test engineer. Why is his salary high? The interview must be brilliant at these points

Mots clés pour la cartographie es; Ajouter une requête par mot - clé à la requête term; Changer le type de mot - clé de cartographie

MySQL log management, backup and recovery

As a developer, what is the most influential book for you?

CVPR 2022 - Interpretation of selected papers of meituan technical team

GO语言-goroutine协程的使用

Don't underestimate the integral mall. It can play a great role

探索云原生数据库,纵观未来科技发展

The "little giant" specialized in special new products is restarted, and the "enterprise cloud" digital empowerment

ES mapping之keyword;term查詢添加keyword查詢;更改mapping keyword類型
随机推荐
Port conflict handling method for tongweb
手机注册股票开户 炒股开户安全吗
探索云原生数据库,纵观未来科技发展
Closed loop management of time synchronization service -- time monitoring
Alibaba OSS object storage service
How about stock online account opening and account opening process? Is it safe to open an account online?
leetcode. 12 --- integer to Roman numeral
兴业证券靠谱吗?开证券账户安全吗?
ES mapping之keyword;term查詢添加keyword查詢;更改mapping keyword類型
FPGA based analog I ² C protocol system design (Part I)
Redis consistency hash and hash slot
`Thymeleaf ` template engine comprehensive analysis
US Senate promotes bipartisan gun safety bill
Design of vga/lcd display controller system based on FPGA (Part 1)
Since the household appliance industry has entered the era of stock competition, why does Suning win the first channel for consecutive times?
R语言构建回归模型诊断(正态性无效)、进行变量变换、使用car包中的powerTransform函数对目标变量进行Box-Cox变换(Box–Cox transform to normality)
动作捕捉系统用于地下隧道移动机器人定位与建图
Golang实现Biginteger大数计算
R语言plotly可视化:可视化模型在整个数据空间的分类轮廓线(等高线)、meshgrid创建一个网格,其中每个点之间的距离由mesh_size变量表示、使用不同的形状标签表征、训练、测试及分类标签
成功解决:selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This versi