Django Whoosh搜索,没有语言版本的结果

时间:2019-01-07 14:09:12

标签: python django search django-haystack whoosh

我有一个以whoosh作为搜索引擎的Django应用。我也有两种语言版本-英语和德语。

我制作了rebuild_index和update_index。

仅英语版本有效,而德语版本则没有结果。

服务器上文件夹的大小(在rebuild_index和update_index之后):

  • whoosh_index_de-3 MB
  • whoosh_index_zh-190 MB

设置配置:

HAYSTACK_CONNECTIONS = {
    'default': {
        'ENGINE': 'search.backend.MultilingualWhooshEngine',
        'PATH': os.path.join(BASE_DIR, 'whoosh_index_de'),
    },
    'default_de': {
        'ENGINE': 'search.backend.MultilingualWhooshEngine',
        'PATH': os.path.join(BASE_DIR, 'whoosh_index_de'),
    },
    'default_en': {
        'ENGINE': 'search.backend.MultilingualWhooshEngine',
        'PATH': os.path.join(BASE_DIR, 'whoosh_index_en'),
    },
}

有人有类似的问题吗?

0 个答案:

没有答案