An open API service indexing awesome lists of open source software.

https://github.com/mage2pro/elasticsearch

It adds new features to the built-in Magento Elasticsearch module
https://github.com/mage2pro/elasticsearch

elasticsearch mage2pro mage2pro-module mage2pro-module-ready mage2pro-module-reusable magento magento2 magento2-extension magento2-module

Last synced: about 2 months ago
JSON representation

It adds new features to the built-in Magento Elasticsearch module

Awesome Lists containing this project

README

          

It adds new features to the built-in Magento's Elasticsearch module.

## How to install
```
bin/magento maintenance:enable
rm -rf composer.lock
composer clear-cache
composer require mage2pro/elasticsearch:*
bin/magento setup:upgrade
bin/magento cache:enable
rm -rf var/di var/generation generated/*
bin/magento setup:di:compile
bin/magento cache:enable
rm -rf pub/static/*
bin/magento setup:static-content:deploy -f en_US
bin/magento maintenance:disable
```

## How to upgrade
```
bin/magento maintenance:enable
composer remove mage2pro/elasticsearch
rm -rf composer.lock
composer clear-cache
composer require mage2pro/elasticsearch:*
bin/magento setup:upgrade
bin/magento cache:enable
rm -rf var/di var/generation generated/*
bin/magento setup:di:compile
bin/magento cache:enable
rm -rf pub/static/*
bin/magento setup:static-content:deploy -f en_US
bin/magento maintenance:disable
```