pythonElasticsearchDSL如何使用
1、連接Es:
importelasticsearch
es=elasticsearch.Elasticsearch([{'host':'127.0.0.1','port':9200}])
2、先看一下搜索,q是指搜索內(nèi)容,空格對(duì)q查詢結(jié)果沒(méi)有影響,size指定個(gè)數(shù),from_指定起始位置,filter_path可以指定需要顯示的數(shù)據(jù),如顯示在最后的結(jié)果中的只有_id和_type。
res_3=es.search(index="bank",q="Holmes",size=1,from_=1)
res_4=es.search(index="bank",q="392255686",size=1000,filter_path=['hits.hits._id','hits.hits._type'])
3、根據(jù)某個(gè)字段查詢,可以多個(gè)查詢條件疊加:
s=Search(using=es,index="index-test").query("match",sip="192.168.1.1")
s=s.query("match",dip="192.168.1.2")
s=s.excute()
以上就是PythonElasticsearchDSL的使用,希望對(duì)大家有所幫助。更多Python學(xué)習(xí)教程請(qǐng)關(guān)注IT培訓(xùn)機(jī)構(gòu):千鋒教育。