我的旧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
这对我不起作用。