Sphinx搜索引擎& Python API

时间:2010-09-11 20:03:35

标签: python sphinx django-sphinx

我正在尝试将Sphinx搜索引擎与他们的Python API一起使用。安装顺利。但是当我使用他们的Python API时,我没有得到完整的结果集。我只收到身份证?但是当我在./bin中使用他们的./search二进制文件时,我得到了整个索引内容。

使用cpp ./search binary -

./search test

1. document=1, weight=1, group_id=1, date_added=Sat Sep 11 07:42:38 2010, title=2
    id=1
    group_id=1
    group_id2=5
    date_added=2010-09-11 07:42:38
    title=test one
    content=this is my test document number one. also checking search within phrases.

但是当我使用Python API时,我得到了 -

>>> import sphinxapi
>>> client = sphinxapi.SphinxClient()
>>> client.SetServer('127.0.0.1', 9312)
>>> client.Query('test')
{'status': 0, 'matches': [{'id': 1, 'weight': 1, 'attrs': {'date_added': 1284171158, 'group_id': 1, 'title': 2}}, {'id': 2, 'weight': 1, 'attrs': {'date_added': 1284171158, 'group_id': 1, 'title': 3}}, {'id': 4, 'weight': 1, 'attrs': {'date_added': 1284171158, 'group_id': 2, 'title': 1}}], 'fields': ['content'], 'time': '0.022', 'total_found': 3, 'warning': '', 'attrs': [['group_id', 1], ['date_added', 2], ['title', 3]], 'words': [{'docs': 6, 'hits': 6, 'word': 'test'}], 'error': '', 'total': 3}

如何将“title”或“content”等字符串字段作为结果集的一部分?

1 个答案:

答案 0 :(得分:4)

您可以使用sql_field_string - 添加到您的配置

source YOUR_SOURCE
{
sql_field_string = title
sql_field_string = content

它会索引这些字段的数据,并将这些字段存储为字符串属性,因此您可以在结果集中获取它们,而无需额外的SQL查询。

然而,因为所有属性字符串属性总是加载到内存中,这就是为什么你可以快速耗尽盒子内存。