How to Check Current Elasticsearch version in Magento 2?

You can check the current elastic search version installed in Magento 2 with the command line as well as from the admin panel.

If you want to check by Command Line,

php bin/magento config:show catalog/search/engine

The output will be: elasticsearch7 Continue reading “How to Check Current Elasticsearch version in Magento 2?”

How to get Elasticsearch Index Prefix value Magento 2?

Elasticsearch Index Prefix parameter used to the indexing of search term prefixes to speed up prefix searches on a website.

You can set Elasticsearch Index Prefix from the admin panel

Settings -> Configuration -> Catalog -> Catalog -> Catalog Search -> Elasticsearch Index Prefix.

Out of the box, the default value is the magento2. Continue reading “How to get Elasticsearch Index Prefix value Magento 2?”

How to get current search engine enabled value Magento 2?

In Magento, You can get the value of the current enable search engine value programmatically.

You can set Search engine from the admin panel

Settings -> Configuration -> Catalog -> Catalog -> Catalog Search -> Search Engine.

To Retrieve the Current search engine value programmatically by interface, Magento\Framework\Search\EngineResolverInterface Continue reading “How to get current search engine enabled value Magento 2?”