You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
2.8 KiB
YAML
91 lines
2.8 KiB
YAML
4 years ago
|
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
|
||
|
avgPostSize:
|
||
|
type: number
|
||
|
hits:
|
||
|
type: string
|
||
|
misses:
|
||
|
type: string
|
||
|
hitRatio:
|
||
|
type: string
|
||
|
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
|
||
|
localCache:
|
||
|
type: object
|
||
|
properties:
|
||
|
length:
|
||
|
type: number
|
||
|
max:
|
||
|
type: number
|
||
|
itemCount:
|
||
|
type: number
|
||
|
percentFull:
|
||
|
type: number
|
||
|
dump:
|
||
|
type: boolean
|
||
|
hits:
|
||
|
type: string
|
||
|
misses:
|
||
|
type: string
|
||
|
hitRatio:
|
||
|
type: string
|
||
|
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
|
||
|
required:
|
||
|
- postCache
|
||
|
- groupCache
|
||
|
- localCache
|
||
|
- $ref: ../../../components/schemas/CommonProps.yaml#/CommonProps
|