如何使用Solr后端在Django干草堆中添加另一个核心?

时间:2019-03-21 06:08:45

标签: python django solr django-haystack multicore

我的旧settings.py是:

HAYSTACK_CONNECTIONS={
    'default':{
        'ENGINE': 'haystack.backends.solr_backend.SolrEngine',
        'URL': 'http://127.0.0.1:8983/solr/core0',
        'STORAGE': 'file',
        'POST_LIMIT': 32 * 1024 * 1024,
        'INCLUDE_SPELLING': True,
        'BATCH_SIZE': 100,
    }
}

它成功运行。现在,我想添加一个新的core1。可以启动core1,但是我不知道如何在settings.py中添加core1。

干草堆的文档只是说:

    # ...or for multicore...
    # 'URL': 'http://127.0.0.1:8983/solr/mysite'

https://django-haystack.readthedocs.io/en/latest/tutorial.html?highlight=solr

我必须看到一个问题:  Multiple Cores in Django Haystack using Solr Backend

这对我不起作用。

0 个答案:

没有答案