标签:sea 顺序 模糊 message 正则表达式: bool 正则 一个 mes
GET /movies/_search?q=2012&df=title&sort=year:desc&from=0&size=10&timeout=1s
GET st_test_2021_01_25/_search?q=st1&df=user
{
"profile": "true"
}
GET st_test_2021_01_25/_search?q=st1
{
"profile": "true"
}
GET st_test_2021_01_25/_search?q=user:st2
{
"profile": "true"
}
try to 表示 try OR to,前后顺序保证一致
"try to" 表示 try AND to,前后顺序保证一致
bool操作
AND/OR/NOT/ 或者&&/||/!
message:(try NOT a)
分组操作:+表示must,-表示must_not
title:(+try -a)
URI中,+用2%表示
GET st_test_2021_01_25/_search?q=message:try to
{
"profile": "true"
}
GET st_test_2021_01_25/_search?q=message:(try NOT A)
{
"profile": "true"
}
year:{2019 TO 2018}
year:[* TO 2018]
year:>2010
year:(>2010 && <=2018)
year:(+>2010 +<=2018)
?代表一个字符
title:[bt]oy
~
~1表示只有一个占位区别,比如:creat →create
~2表示两个占位却别,比如:crea →create
标签:sea 顺序 模糊 message 正则表达式: bool 正则 一个 mes
原文地址:https://www.cnblogs.com/lovelifest/p/14327344.html