zoukankan      html  css  js  c++  java
  • ElasticSearch 基本操作

    1.创建索引
    put:http://localhost:9201/test1
    {
    "mappings": {
    "properties": {
    "id": {
    "type": "long",
    "store": true
    },
    "name": {
    "type": "text",
    "store": true
    },
    "title": {
    "type": "text",
    "store": true
    }
    }
    }
    }

    ---------------------------------------------------------------------------------------
    2.新增文档
    put:http://localhost:9201/test1/_doc
    {
    "id": 10,
    "name": "a1",
    "title": "a111"
    }
    ---------------------------------------------------------------------------------------
    3.更新文档
    put:http://localhost:9201/test1/_doc/pBuX7H0B4LNU61os9ujP
    {
    "id": 20,
    "name": "进贤县222",
    "title": "南昌市进贤县22"
    }

    ---------------------------------------------------------------------------------------

    4.删除文档
    delete:http://localhost:9201/test1/_doc/oxuX7H0B4LNU61osLuhW

    5.查询文档1
    get:http://localhost:9201/test1/_doc/pBuX7H0B4LNU61os9ujP

    6.查询文档2
    post:http://localhost:9201/test1/_doc/_search
    {
    "query":{
    "match_all":{}
    }
    }

    --------------------------------------------------------------------------------
    7.查询文档3
    post:http://localhost:9201/test1/_doc/_search
    {
    "query":{
    "match":{
    "title":"b111"
    }
    }
    }
    -----------------
    {
    "query":{
    "match":{
    "title":"b111"
    }
    },
    "sort":{
    "id":{
    "order":"desc"
    }
    }
    }
    -----------------
    {
    "from":0,
    "size":2,
    "query":{
    "match":{
    "title":"b111"
    }
    },
    "sort":{
    "id":{
    "order":"desc"
    }
    }
    }

     

  • 相关阅读:
    素数路径Prime Path POJ3126 素数,BFS
    Fliptile POJ3279 DFS
    Find the Multiple POJ1426
    洗牌Shuffle'm Up POJ3087 模拟
    棋盘问题 POJ1321 DFS
    抓住那只牛!Catch That Cow POJ3278 BFS
    Dungeon Master POJ2251 三维BFS
    Splitting into digits CodeForce#1104A
    Ubuntu下手动安装Nvidia显卡驱动
    最大连续子序列和
  • 原文地址:https://www.cnblogs.com/ligenyun/p/15729455.html
Copyright © 2011-2022 走看看