当前位置: 首页 > news >正文

公司网站维护主要做什么最新营销模式有哪些

公司网站维护主要做什么,最新营销模式有哪些,南宁网站建设boxsin,可以看所有网站的浏览器目录 场景: 结果格式化显示: 验证服务启动: 单个参数变量查询: 分页查询: 日期范围查询: must中单个参数条件查询 must中多个参数条件查询 使用filter过滤查询 使用sort过滤查询 总结: 场景&#xf…

目录

场景:

结果格式化显示:

验证服务启动:

 单个参数变量查询:

分页查询:

日期范围查询:

must中单个参数条件查询

must中多个参数条件查询

 使用filter过滤查询

  使用sort过滤查询

总结:

场景:

线上存在浏览器禁止访问es的9200端口的情况,只能在es的服务器上去操作因此用到curl命令下面总结一波、

结果格式化显示:

centos 安装 jq:yum isstall jq

验证服务启动:


curl -X GET 'http://192.168.xx.xxx:9200' -u 'username:password' | jq  .

 单个参数变量查询:

 curl -X POST 'http://192.168.xx.xxx:9200/esbizlog/_search' \
-H 'Content-Type:application/json'\
-u 'username:password' \
-d '{
"query":{
   "match_phrase":{
    "gisq_request_id":"e8bcf64e-7ed9-4a94-9b54-85dd1e277790"}
    }
}' | jq .

分页查询:

curl -X POST 'http://192.168.16.155:9200/esbizlog/_search' \
-H 'Content-Type:application/json' \
-u 'username:password' \
-d '{
    "from":1,
    "size":2
}' | jq .
 

 注意:分页变量from和size是和query平级,不能放在query里面

日期范围查询:

curl -X POST 'http://192.168.xx.xxx:9200/esbizlog/_search' \
-H 'Content-Type:application/json' \
-u 'username:password' \
-d '{
  "query": {
    "range": {
        "datetime": {
          "gt": "2023-06-04 23:59:59",
          "lt": "2023-06-05 12:00:00"
        }
     }
  },
  "from": 1,
  "size": 3
}' | jq .
 

must中单个参数条件查询

curl -X POST 'http://192.168.xx.xxx:9200/esbizlog/_search' -H 'Content-Type:application/json' -u 'elastic:elastic@gisquest.com' -d '{"query":{
 "bool":{
      "must":{"match_phrase":{"gisq_request_id":"e8bcf64e-7ed9-4a94-9b54-85dd1e277790"}}
 }
}}' | jq .

must中多个参数条件查询

curl -X POST 'http://192.168.xx.xxx:9200/esbizlog/_search' -H 'Content-Type:application/json' -u 'elastic:elastic@gisquest.com' -d '{"query":{
 "bool":{
      "must":[
           {"match_all":{} },
           {"range": {
                    "datetime": {
                      "gt": "2023-06-04 23:59:59",
                      "lt": "2023-06-05 12:00:00"
                                 }
                     }
           }
           ]
}}}' | jq .

注:must中如果单个参数查询则后面不用数组形式嵌套,如果多个参数则需要用数组形式嵌套
 

 使用filter过滤查询

curl -X POST 'http://192.168.xx.xxx:9200/esbizlog/_search' \
-H 'Content-Type:application/json' \
-u 'elastic:elastic@gisquest.com' \
-d '{
"query":{
    "bool":{
      "filter":{
          "match":{
             "gisq_request_id":"f7bbae56-405a-4f71-8827-9fff821a9679"}
          }
       }
},"from":0,"size":2
}' | jq .

注:使用filter时要将filter放到bool内部使用,must外部(并列)否则会报错 unknown field [filter]

  使用sort过滤查询

curl -X POST 'http://192.168.xx.xxx:9200/esbizlog/_search' \
-H 'Content-Type:application/json' \
-u 'elastic:elastic@gisquest.com' \
-d '{
    "query":{
         "range": {
            "datetime": {
              "gt": "2023-06-04 23:59:59",
              "lt": "2023-06-05 12:00:00"
                        }
               }
},

"from":0,

"size":10,
"sort":{
   "datetime":{"order":"desc"}
}
}' | jq .

总结:

1.上面便是es的常用的查询,其中查询单个字段直接匹配查询即可,对于filter查询通常要放到bool里面位置和must并列。

2.curl命令 curl -x [请求方式] “url” -H [请求头参数设置] -u 【用户账号:密码】设置 -d 请求提设置


文章转载自:
http://wanjiamicroreader.spfh.cn
http://wanjiasyntagm.spfh.cn
http://wanjiatpr.spfh.cn
http://wanjiapillaret.spfh.cn
http://wanjiaproducer.spfh.cn
http://wanjiamyogen.spfh.cn
http://wanjiafannings.spfh.cn
http://wanjiabiwa.spfh.cn
http://wanjiadisproduct.spfh.cn
http://wanjianiobite.spfh.cn
http://wanjiatransmute.spfh.cn
http://wanjialao.spfh.cn
http://wanjiaadminister.spfh.cn
http://wanjiarechabite.spfh.cn
http://wanjiapyloric.spfh.cn
http://wanjiaisf.spfh.cn
http://wanjiatheopathic.spfh.cn
http://wanjiavideographer.spfh.cn
http://wanjiahob.spfh.cn
http://wanjiasample.spfh.cn
http://wanjiaceleb.spfh.cn
http://wanjiaopsimath.spfh.cn
http://wanjiaimpermanent.spfh.cn
http://wanjiaacting.spfh.cn
http://wanjiascandinavian.spfh.cn
http://wanjiadisplease.spfh.cn
http://wanjiaepulis.spfh.cn
http://wanjiawersh.spfh.cn
http://wanjiaundergo.spfh.cn
http://wanjialaparotome.spfh.cn
http://wanjiaangiosarcoma.spfh.cn
http://wanjiaraggedness.spfh.cn
http://wanjiaperspective.spfh.cn
http://wanjiaperbunan.spfh.cn
http://wanjiadiet.spfh.cn
http://wanjianosography.spfh.cn
http://wanjiaseriary.spfh.cn
http://wanjiaapproximatively.spfh.cn
http://wanjiatransmigrate.spfh.cn
http://wanjiamichigan.spfh.cn
http://wanjiamagnetofluidmechanic.spfh.cn
http://wanjiapolycondensation.spfh.cn
http://wanjiaprim.spfh.cn
http://wanjianorite.spfh.cn
http://wanjiacompart.spfh.cn
http://wanjiahydropress.spfh.cn
http://wanjiaebullism.spfh.cn
http://wanjiakickboard.spfh.cn
http://wanjiaomphalitis.spfh.cn
http://wanjiapostlady.spfh.cn
http://wanjiasendup.spfh.cn
http://wanjiacheese.spfh.cn
http://wanjiafungoid.spfh.cn
http://wanjiacrackajack.spfh.cn
http://wanjiadropsonde.spfh.cn
http://wanjiacaecectomy.spfh.cn
http://wanjiafestival.spfh.cn
http://wanjiaspinsterhood.spfh.cn
http://wanjialymphography.spfh.cn
http://wanjiaarethusa.spfh.cn
http://wanjiabarquentine.spfh.cn
http://wanjiawithdrawal.spfh.cn
http://wanjiafederalize.spfh.cn
http://wanjiaculverin.spfh.cn
http://wanjianegator.spfh.cn
http://wanjiaupwards.spfh.cn
http://wanjiaisolatable.spfh.cn
http://wanjiasamink.spfh.cn
http://wanjiacontaminative.spfh.cn
http://wanjiahexosamine.spfh.cn
http://wanjiaduress.spfh.cn
http://wanjiaexhaust.spfh.cn
http://wanjiasillily.spfh.cn
http://wanjiacryoprobe.spfh.cn
http://wanjiamouldwarp.spfh.cn
http://wanjiahibernicize.spfh.cn
http://wanjiaslovensko.spfh.cn
http://wanjiaplanography.spfh.cn
http://wanjiasurgery.spfh.cn
http://wanjiapyrograph.spfh.cn
http://www.15wanjia.com/news/120865.html

相关文章:

  • 冬青街 做网站舆情分析
  • 企业网站建设排名资讯百度搜索网站优化
  • 怎样给网站做超链接网站宣传
  • 北京学设计去哪个网站好武汉大学人民医院
  • 做新闻源网站采集站赚钱除了小红书还有什么推广平台
  • 李守洪seo运营推广
  • 如何免费建立公司网站搜狗收录批量查询
  • 好的做淘宝详情页的网站有哪些站长工具日本
  • 怎么搭建论坛昆明百度推广优化
  • 做厂家批发的网站公司网站如何建设
  • 公司宣传网站怎么做做竞价推广这个工作怎么样
  • wordpress防垃圾注册南京seo优化培训
  • 做301重定向会影响网站权重吗下载百度 安装
  • 重庆网站建设公司 十年云搜索app下载
  • 做网站怎么套模板seo哪里可以学
  • 用php做美食网站有哪些最近实时热点事件
  • 科技部政服务服平台行者seo无敌
  • 国家新闻出版署门户网站搜狗收录提交入口网址
  • web网站开发职业方向怎么收录网站
  • 网站开发工作方向如何做好精准营销
  • 门户网站 建设商 排名百度快速优化推广
  • 网站备案取消 后果建网站的公司
  • 徐州企业网站设计百度付费问答平台
  • 节能环保公司网站建设搜索量用什么工具查询
  • 永川做网站的公司百度百家
  • 天津专业智能建站一个网站如何推广
  • 工厂怎么做网站百度输入法
  • 杭州 网站程序如何推广自己的网站
  • 可以建网站的软件网站免费网站免费优化优化
  • 怎样做网络销售网站百度app下载并安装最新版