@@ -4,32 +4,43 @@ Disable default search engine in Magento2 and catalog search fulltext indexing.
4
4
5
5
## Purpose
6
6
7
+ When catalog search and display are not handled by your Magento it could be redundant to integrate ES in your architecture.
8
+
9
+ 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...
10
+
11
+ Natively Magento do not offer the possibility to completely disable ElasticSearch, this module made it possible.
12
+
13
+ ## What it does
14
+
7
15
- Make Elasticsearch service no longer required to install and run Magento2.
8
16
- Set value "none" as default search engine
9
17
- Return empty response from front-end queries
10
18
- Uninstall magento modules:
11
- - magento/module-advanced-search
12
19
- magento/module-elasticsearch-catalog-permissions
13
20
- magento/module-inventory-elasticsearch
14
21
- magento/module-elasticsearch
15
22
- magento/module-elasticsearch-6
16
23
- magento/module-elasticsearch-7
17
24
18
- ## Compatibility
19
-
20
- Tested on Magento version 2.3.x and 2.4.x
21
-
22
25
You should have no issue with indexation, compilation and even front-end research, which should always return no result.
23
26
24
- If you encountered an issue during installation, please report it on this github repository.
27
+ ## Compatibility
25
28
26
- For version greater or equal to v2.4.3 you can install the latest tag v0.1.x.
29
+ | Magento | v2.3 | v2.4.3 | v2.4.4 |
30
+ | ------------| --------| --------| --------|
31
+ | module DSE | ~ 0.0.0 | ~ 0.1.0 | ~ 0.2.0 |
27
32
28
- For lower version you may install v0.0.x.
33
+ ### Notes
34
+ - v0.1.0: Adding indexer handler (Magento 2.4.3)
35
+ - v0.2.0: magento/module-advanced-search has been reintroduced due to a dependency in magento/module-catalog-graph-ql (Magento 2.4.4).
29
36
30
37
## Installation
31
38
```
32
39
composer require zepgram/module-disable-search-engine
33
40
bin/magento module:enable Zepgram_DisableSearchEngine
34
41
bin/magento setup:upgrade
35
42
```
43
+
44
+ ## Issue
45
+
46
+ If you encountered an issue, please report it on this GitHub repository.
0 commit comments