0
Traceback (most recent call last):

  File "D:\Python25\Lib\site-packages\django\core\servers\basehttp.py", line 280, in run
    self.finish_response()

  File "D:\Python25\Lib\site-packages\django\core\servers\basehttp.py", line 319, in finish_response
    for data in self.result:

  File "D:\Python25\Lib\site-packages\django\http\__init__.py", line 374, in __iter__
    self._iterator = iter(self._container)

  File "D:\zjm_code\sphinx_test\djangosphinx\models.py", line 240, in __iter__
    return iter(self._get_data())

  File "D:\zjm_code\sphinx_test\djangosphinx\models.py", line 404, in _get_data
    self._result_cache = list(self._get_results())

  File "D:\zjm_code\sphinx_test\djangosphinx\models.py", line 530, in _get_results
    results = self._get_sphinx_results()

  File "D:\zjm_code\sphinx_test\djangosphinx\models.py", line 517, in _get_sphinx_results
    raise SearchError, client.GetLastError()

SearchError: connection to localhost;3312 failed ((10061, 'Connection refused'))

接下来是我的代码:

from sphinx_test.models import File
from djangosphinx.models import SphinxSearch
def xx(request):
    return HttpResponse(File.search.query('test'))


urlpatterns = patterns('',
    (r'^$',xx),
)
4

3 回答 3

1

您不使用分号来分隔主机和端口,而是使用冒号:即localhost:3312代替localhost;3312.

于 2010-02-04T13:47:36.713 回答
1

什么版本的狮身人面像?django-狮身人面像?portsphinx 使用的设置发生了变化sphinx.conf

现在searchd继续运行127.0.0.1:9312。您当然可以在sphinx.con. searchd这样做后重新启动。

于 2010-10-29T18:36:46.463 回答
0

我认为值得注意的是,如果您忘记打开 sphinx,您将收到此错误消息。

于 2012-12-14T18:26:59.657 回答