是否可以在没有在 magento 2.3 中配置 Elasticsearch 的情况下实施停用词 + 如何在 magento 2.3 中实施停用词

Is it possible to implement Stopwords without Elasticsearch configured in magento 2.3 + How to implement stopwords in magento 2.3

我想为我的项目添加停用词,但我认为我的服务器上没有安装 Elasticsearch。选择搜索引擎 MYSQL。

如果没有配置 Elasticsearch,我们的停用词是否有效?

另外,我想确定是否配置了弹性搜索。为此,我正在使用命令

curl -XGET 'http://localhost:9200' 

作为回应,我得到的输出为:

curl: (7) Failed to connect to localhost:9200; Connection refused.

这是否表示未配置弹性搜索?

我找到了正确的答案。

a) 安装Elasticsearch6.0

b) 然后按照步骤https://devdocs.magento.com/guides/v2.4/config-guide/elasticsearch/es-config-stopwords.html#to-change-directory-stopwords

但是需要记住的一件事是: 不要覆盖 stopwords.csv 文件 相反,根据您的语言环境覆盖 stopwords_en_US.csv 文件。

您的模块将完美运行。 所有站点上的解决方案都是完美的。只是我们需要根据语言环境覆盖停用词的正确文件。