Returns XML or JSON response with memory cache statistics (statisticsGet)
When appended with .json or .xml will respond with memory caches statistics in the requested format if the blobstore used is an instance of MemoryBlobStore.
Produces
This API call produces the following media types according to the request header;
the media type will be conveyed by the response header.
application/html
application/json
Responses
200
OK
Example data
Content-Type: application/xml
0
0
0
0
100.0
0.0
0.0
67108864
0
Example data
Content-Type: application/json
{
"org.geowebcache.storage.blobstore.memory.CacheStatistics": {
"evictionCount": 0,
"hitCount": 0,
"totalSize": 16777216,
"actualSize": 0,
"missRate": 0,
"totalCount": 0,
"currentMemoryOccupation": 0,
"hitRate": 100,
"missCount": 0
}
}