Files
NodeBB/public/openapi/read/admin/advanced/cache.yaml
Barış Soner Uşaklı fe63c6aef3 fix: spec
2020-11-07 22:21:04 -05:00

115 lines
3.6 KiB
YAML

get:
tags:
- admin
summary: Get system cache info
responses:
"200":
description: ""
content:
application/json:
schema:
allOf:
- type: object
properties:
postCache:
type: object
properties:
length:
type: number
max:
type: number
nullable: true
itemCount:
type: number
percentFull:
type: number
hits:
type: string
misses:
type: string
hitRatio:
type: string
enabled:
type: boolean
groupCache:
type: object
properties:
length:
type: number
max:
type: number
itemCount:
type: number
percentFull:
type: number
hits:
type: string
misses:
type: string
hitRatio:
type: string
enabled:
type: boolean
localCache:
type: object
properties:
length:
type: number
max:
type: number
itemCount:
type: number
percentFull:
type: number
hits:
type: string
misses:
type: string
hitRatio:
type: string
enabled:
type: boolean
objectCache:
type: object
properties:
length:
type: number
max:
type: number
itemCount:
type: number
percentFull:
type: number
hits:
type: string
misses:
type: string
hitRatio:
type: string
enabled:
type: boolean
headerFooterCache:
type: object
properties:
length:
type: number
max:
type: number
itemCount:
type: number
percentFull:
type: number
hits:
type: string
misses:
type: string
hitRatio:
type: string
enabled:
type: boolean
required:
- postCache
- groupCache
- localCache
- headerFooterCache
- $ref: ../../../components/schemas/CommonProps.yaml#/CommonProps