Elasticsearch -PHP 查询 ( Version 7.x) 作者: lovingyu_er 时间: 2020-12-04 09:56:00 分类: Elasticsearch ####ElasticSearch-PHP库索引文档 索引文档,是增加文档的一种方式(增加文档->类似mysql中插入数据,请自行转换概念:文档->mysql中表的一条记录) ####indexAPI ```ElasticSearch index```方法的作用: ``` Adds a JSON document to the specified data stream or index and makes it searchable. If the target is an index and the document already exists, the request updates the document and increments its version. ``` 如果文档已经存在,该方法就会更新文档,并且递增该文档的版本号。 注意: ``` You cannot use the index API to send update requests for existing documents to a data stream ``` 不要使用``` index API``` 去更新一个已经存在的文档到数据流 #### x-Pack插件 一个集安全、警报、监视、报告和图形功能于身的扩展,轻松开启或关闭那你想要的功能。 标签: none