@muriel.schmidt
To flush the cache in Magento, you can follow these steps:
Alternatively, you can also flush the cache by running the following command from the root directory of your Magento installation:
1
|
php bin/magento cache:clean
|
This will clean all of the cache types that are enabled in your Magento installation. You can also specify specific cache types to clean by using the --type
option, like this:
1
|
php bin/magento cache:clean --type=config |
This will only clean the configuration cache. You can see a full list of available cache types by running the php bin/magento cache:clean --help
command.