@Path(value="/system/cache")
public interface ICacheMgmt
| Modifier and Type | Method and Description |
|---|---|
Stream |
dumpContent()
Serializes the content of all caches
{
"cache1": {
key0: value,
key1: value,
},
"cacheN": {
keyX: valueY
}
}
|
void |
flushCaches()
Flushes all internal caches
|
@POST
@Path(value="_flush")
void flushCaches()
throws ServerFault
ServerFault@GET @Path(value="_dump") @Produces(value="application/json") Stream dumpContent()
{
"cache1": {
key0: value,
key1: value,
},
"cacheN": {
keyX: valueY
}
}
Copyright © 2023. All Rights Reserved.