当我尝试运行以下使用solrpy的python代码时,
enter code here
import solr
s = solr.SolrConnection('http://example.org:8080/solr')
s.add(id=1, title='Lucene in Action', author=['hello','lucky'])
s.commit()
response = s.query('title:lucene')
for hit in response.results:
print hit['title']
我收到以下错误:
错误:[Errno 10060]连接尝试失败,因为连接方在一段时间后没有正确响应,或者由于连接主机无法响应而建立连接失败
答案 0 :(得分:0)
你应该指向一个有效的Solr(你确定在example.org上运行了一个Solr吗?)