本文整理汇总了Python中pyes.query.MatchAllQuery.to_search_json方法的典型用法代码示例。如果您正苦于以下问题:Python MatchAllQuery.to_search_json方法的具体用法?Python MatchAllQuery.to_search_json怎么用?Python MatchAllQuery.to_search_json使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pyes.query.MatchAllQuery
的用法示例。
在下文中一共展示了MatchAllQuery.to_search_json方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: term_facet
# 需要导入模块: from pyes.query import MatchAllQuery [as 别名]
# 或者: from pyes.query.MatchAllQuery import to_search_json [as 别名]
def term_facet(host='localhost:9200',
terms=['bibleverse'],
_type='habakkuk',
date_filter=[],
size=10):
ret = []
conn = ES(host)
q = MatchAllQuery()
if date_filter:
start,end = date_filter
q = FilteredQuery(q, RangeFilter(qrange=ESRange('created_at_date',start,end,include_upper=False)))
q = q.search(size=0)
for term in terms:
q.facet.add_term_facet(term,order='count',size=size)
print json.dumps(json.loads(q.to_search_json()),indent=2)
resultset = conn.search(query=q, indices=_type+'-*', doc_types=[_type])
for facet in resultset.facets:
print "Total",facet,resultset.facets[facet]['total']
for row in resultset.facets[facet]['terms']:
print "\t",row['term'],row['count']
ret.append((facet,row['term']))
return ret