• elasearch 版本控制


    http://192.168.32.81:9200/library/books/8/
                                  GET
    
    {
    
        "_index": "library",
        "_type": "books",
        "_id": "8",
        "_version": 1,
        "found": true,
        "_source": {
            "titile": "Elasticsearch: The Defintive Guide",
            "name": {
                "first": "Zachary",
                "last": "Tong"
            },
            "publish_date": "2016-07-29",
            "price": "90.01"
        }
    
    }
    
    
    
    此时版本为  "_version": 1,
    
    
    http://192.168.32.81:9200/library/books/8/
    
    _update                               POST
    
    {
      "doc":{
          "price":"11.13"}
     }
    
    
    
    {
    
        "_index": "library",
        "_type": "books",
        "_id": "8",
        "_version": 2,
        "found": true,
        "_source": {
            "titile": "Elasticsearch: The Defintive Guide",
            "name": {
                "first": "Zachary",
                "last": "Tong"
            },
            "publish_date": "2016-07-29",
            "price": "11.13"
        }
    
    }
    
    此时版本变为2
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    

  • 相关阅读:
    线程
    进程2
    进程
    socketserver
    黏包
    初始网络编程
    模块
    super
    mro c3算法
    日志固定格式
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13350452.html
Copyright © 2020-2023  润新知