Properties
| Name | Type | Description |
|---|---|---|
| name | string | Cache region name |
| size | integer | Number of entries in the cache |
| maxSize | integer | Maximum cache size |
| hitCount | integer | Total cache hits |
| missCount | integer | Total cache misses |
| hitRatio | number | Cache hit ratio |
| evictionCount | integer | Number of evictions |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CacheRegion",
"title": "CacheRegion",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Cache region name"
},
"size": {
"type": "integer",
"description": "Number of entries in the cache"
},
"maxSize": {
"type": "integer",
"description": "Maximum cache size"
},
"hitCount": {
"type": "integer",
"description": "Total cache hits"
},
"missCount": {
"type": "integer",
"description": "Total cache misses"
},
"hitRatio": {
"type": "number",
"format": "double",
"description": "Cache hit ratio"
},
"evictionCount": {
"type": "integer",
"description": "Number of evictions"
}
}
}