cache-disable
Disable specific Magento 2 cache types to test changes and troubleshoot issues during development without clearing all cached data.
Instructions
Disable specific Magento 2 cache types
Input Schema
Name | Required | Description | Default |
---|---|---|---|
types | Yes | Cache types to disable |
Input Schema (JSON Schema)
{
"properties": {
"types": {
"description": "Cache types to disable",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array"
}
},
"required": [
"types"
],
"type": "object"
}