cache-enable
Enable specific Magento 2 cache types to improve website performance and ensure proper functionality by activating selected caching mechanisms.
Instructions
Enable specific Magento 2 cache types
Input Schema
Name | Required | Description | Default |
---|---|---|---|
types | Yes | Cache types to enable |
Input Schema (JSON Schema)
{
"properties": {
"types": {
"description": "Cache types to enable",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array"
}
},
"required": [
"types"
],
"type": "object"
}