zepgram / module-disable-search-engine
Magento2 module to disable search engine and fulltext indexing for category search
Installs: 55 770
Dependents: 0
Suggesters: 0
Security: 0
Stars: 80
Watchers: 6
Forks: 11
Open Issues: 1
Type:magento2-module
Requires
- php: ^7.4||^8.0
- magento/framework: ^103.0.6
- magento/module-backend: ^102.0.6
- magento/module-catalog-search: ^102.0.6
- magento/module-indexer: ^100.4.6
- magento/module-search: ^101.1.6
Replaces
- magento/module-elasticsearch: *
- magento/module-elasticsearch-6: *
- magento/module-elasticsearch-7: *
- magento/module-elasticsearch-catalog-permissions: *
- magento/module-elasticsearch-catalog-permissions-graph-ql: *
- magento/module-inventory-elasticsearch: *
- magento/module-open-search: *
This package is auto-updated.
Last update: 2024-11-24 17:41:59 UTC
README
Disable default search engine in Magento2 and catalog search fulltext indexing.
Purpose
When catalog search and display are not handled by your Magento it could be redundant to integrate ES in your architecture.
You may have a PIM dedicated for this, or maybe you are designing a microservice architecture, you want to smooth the Magento monolith aspect etc...
Natively Magento do not offer the possibility to completely disable ElasticSearch, this module made it possible.
What it does
- Make Elasticsearch service no longer required to install and run Magento2.
- Set value "none" as default search engine
- Return empty response from front-end queries
- Uninstall magento modules:
- magento/module-elasticsearch-catalog-permissions
- magento/module-elasticsearch-catalog-permissions-graph-ql
- magento/module-inventory-elasticsearch
- magento/module-elasticsearch
- magento/module-elasticsearch-6
- magento/module-elasticsearch-7
- magento/module-open-search
You should have no issue with indexation, compilation and even front-end research, which should always return no result.
Compatibility
Notes
- v0.1.0: adding indexer handler (Magento 2.4.3)
- v0.2.0: the
magento/module-advanced-search
has been reintroduced due to a dependency inmagento/module-catalog-graph-ql
(Magento 2.4.4). - v0.3.0: uninstalling
magento/module-open-search
Installation
composer require zepgram/module-disable-search-engine
bin/magento module:enable Zepgram_DisableSearchEngine
bin/magento setup:upgrade
Issue
If you encountered an issue, please report it on this GitHub repository.