我刚开始使用以下代码处理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.任何人都可以帮我解决这个问题。
答案 0 :(得分:1)
TCP错误10061表示No connection could be made because the target machine actively refused it
。所以你必须检查程序是否可以连接localhost:8083
。检查 Jetty 或其他网络容器(例如 tomcat )。