使用python在单个请求中搜索solr并行查询

时间:2016-04-26 08:05:05

标签: python-2.7 solr sunburnt

如何使用Python一次向solr服务器发送多个查询。

我的代码是:

import sunny

solr = sunny.Solr('http://localhost:8983/solr/gcss1/')

obj_query2=['Hdd failure','battery failure','smart error failure']

for i in obj_query2:
    a=solr.query({'q': i,'facet': 'on','facet.field': ['case_title','runtime']})
    print a

我在这里逐一收到回复,但我需要一次点击所有查询到我的solr服务器。

0 个答案:

没有答案