博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
es python demo
阅读量:5251 次
发布时间:2019-06-14

本文共 688 字,大约阅读时间需要 2 分钟。

from elasticsearch import Elasticsearch# 默认host为localhost,port为9200.但也可以指定host与portes = Elasticsearch()# 添加或更新数据,index,doc_type名称可以自定义,id可以根据需求赋值,body为内容es.index(index="my_index",doc_type="test_type",id=1,body={
"name":"python","addr":"深圳"})# 或者:ignore=409忽略文档已存在异常es.create(index="my_index",doc_type="test_type",id=1,ignore=409,body={
"name":"python","addr":"深圳"})from elasticsearch import Elasticsearches = Elasticsearch()# 获取索引为my_index,文档类型为test_type的所有数据,result为一个字典类型result = es.search(index="my_index",doc_type="test_type")# 或者这样写:搜索id=1的文档result = es.get(index="my_index",doc_type="test_type",id=1)print(result)# 打印所有数据

转载于:https://www.cnblogs.com/luoganttcc/p/10525367.html

你可能感兴趣的文章
poj 3164 最小树形图(朱刘算法)
查看>>
服务器内存泄露 , 重启后恢复问题解决方案
查看>>
android一些细节问题
查看>>
KDESVN中commit时出现containing working copy admin area is missing错误提示
查看>>
利用AOP写2PC框架(二)
查看>>
【动态规划】skiing
查看>>
java定时器的使用(Timer)
查看>>
ef codefirst VS里修改数据表结构后更新到数据库
查看>>
boost 同步定时器
查看>>
[ROS] Chinese MOOC || Chapter-4.4 Action
查看>>
简单的数据库操作
查看>>
iOS-解决iOS8及以上设置applicationIconBadgeNumber报错的问题
查看>>
亡灵序曲-The Dawn
查看>>
Redmine
查看>>
帧的最小长度 CSMA/CD
查看>>
xib文件加载后设置frame无效问题
查看>>
编程算法 - 左旋转字符串 代码(C)
查看>>
IOS解析XML
查看>>
Python3多线程爬取meizitu的图片
查看>>
树状数组及其他特别简单的扩展
查看>>