cache-view
View specific cache entries in Magento 2 to inspect stored data and troubleshoot caching issues by providing the cache key.
Instructions
Inspect specific cache entries in Magento 2
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes | Cache key to inspect | |
type | No | Cache type (optional) |
Input Schema (JSON Schema)
{
"properties": {
"key": {
"description": "Cache key to inspect",
"type": "string"
},
"type": {
"description": "Cache type (optional)",
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}