Caching is a very important to improve the performance and scalability of your Magento. 

 

The two main caching system that you can enable in your Cloud Dedicated Hosting plan are:

 

If you checked the cache status of your Magento 2 store and it isn't enabled, you should enable it as otherwise the two caching system above will not work.

 


To enable caching for Magento, navigate to the directory where Magento is installed (in this case we will use public_html):-

cd public_html

 

Then, run the following command:-

bin/magento cache:enable

 

You should see the following:-

Changed cache status:
                        config: 0 -> 1
                        layout: 0 -> 1
                    block_html: 0 -> 1
                   collections: 0 -> 1
                    reflection: 0 -> 1
                        db_ddl: 0 -> 1
                           eav: 0 -> 1
         customer_notification: 0 -> 1
            config_integration: 0 -> 1
        config_integration_api: 0 -> 1
                google_product: 0 -> 1
                     full_page: 0 -> 1
             config_webservice: 0 -> 1
                     translate: 0 -> 1
                        vertex: 0 -> 1

 

Clean your caches for it to take effect:-

bin/magento cache:clean

 

Was this answer helpful? 0 Users Found This Useful (0 Votes)