如果你已经有了Elasticsearch
环境,那么可以将搜索从Whoosh
换成Elasticsearch
,集成方式也很简单,
首先需要注意如下几点:
- 你的
Elasticsearch
支持ik
中文分词 - 你的
Elasticsearch
版本>=7.3.0
接下来在settings.py
做如下改动即可:
- 增加es链接,如下所示:
ELASTICSEARCH_DSL = {
'default': {
'hosts': '127.0.0.1:9200'
},
}
- 修改
HAYSTACK
配置:
HAYSTACK_CONNECTIONS = {
'default': {
'ENGINE': 'djangoblog.elasticsearch_backend.ElasticSearchEngine',
},
}
然后终端执行:
./manage.py build_index
这将会在你的es中创建两个索引,分别是blog
和performance
,其中blog
索引就是搜索所使用的,而performance
会记录每个请求的响应时间,以供将来优化使用。