我刚刚开始使用以下代码研究 solrpy。
import solr
# create a connection to a solr server
s = solr.SolrConnection('http://localhost:8083/solr')
# add a document to the index
s.add(id=1, title='Lucene in Action', author=['Erik Hatcher', 'Otis Gospodnetic'])
s.commit()
# do a search
response = s.query('title:lucene')
for hit in response.results:
print hit['title']
它正在抛出 Socket 错误:Errno 10061。任何人都可以帮我解决这个问题。