Django-haystack用" simple"返回结果。后端,但没有"嗖嗖"

时间:2012-01-24 21:13:01

标签: python django django-haystack whoosh

我正在尝试将搜索与django-haystack集成,
虽然它适用于“示例”后端,但当用whoosh替换后端时,它总是返回0结果。

settings.py:

HAYSTACK_DEFAULT_OPERATOR = 'AND'
HAYSTACK_SITECONF = 'search_sites'
HAYSTACK_SEARCH_ENGINE = 'whoosh'
HAYSTACK_SEARCH_RESULTS_PER_PAGE = 20
HAYSTACK_WHOOSH_PATH = os.path.join(PROJECT_ROOT, 'search_index')

search_sites.py

import haystack
haystack.autodiscover()

简档/ search_indexes.py:

from haystack import indexes
from haystack import site

from profiles.models import Profile


class ProfileIndex(indexes.SearchIndex):
    text = indexes.CharField(document=True, use_template=True)

    def index_queryset(self):
        """Used when the entire index for model is updated."""
        return Profile.objects.all()

site.register(Profile, ProfileIndex)

模板/搜索/索引/简档/ profile_text.txt:

{{ profile.name }}
{{ profile.description }}

运行python manage.py rebuild_index会返回:

All documents removed.
Indexing 60 profiles.

在shell中运行以下内容时:

>>> from haystack.query import SearchQuerySet
>>> sqs = SearchQuerySet().all()
>>> sqs.count()
0

当用“简单”后端切换飞快移动时,一切正常,返回60个结果。

根据Getting Started with HaystackDebugging Haystack,似乎所有内容都设置正确 我尝试安装以前版本的Whoosh,没有任何成功。

此时感到非常愚蠢,任何帮助都会非常感激。

包版本:

python==2.7  
Django==1.3.1  
Whoosh==2.3.2  
django-haystack==1.2.6  

更新

  • 将飞快移动降至1.8.4并没有帮助。
  • 使用Haystack Tutorial中所述的基本搜索模板时,所有结果都会返回1个字母的查询,0个结果会返回其他搜索结果。

1 个答案:

答案 0 :(得分:7)

好的,找到它,然后我就更傻了......

templates/search/indexes/profiles/profile_text.txt应该是:

{{ object.name }}
{{ object.description }}

而不是:

{{ profile.name }}
{{ profile.description }}

令我困惑的是"简单"与数据库匹配的后端,显然忽略了数据模板。