1

我刚刚开始使用以下代码研究 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。任何人都可以帮我解决这个问题。

4

1 回答 1

1

TCP 错误 10061 表示No connection could be made because the target machine actively refused it. 所以你必须检查程序是否可以连接localhost:8083。检查您的Jetty或其他 Web 容器(例如tomcat)。

于 2013-11-11T01:51:35.280 回答