Cache
Invalidate cache entries by key pattern
POST /internal/invalidateCache
POST /internal/invalidateCache
Drops cache entries matching the supplied keys/patterns. Use sparingly — clearCache is the
blunter alternative.
Request body
keysstring[]bodyKeys or wildcard patterns to drop.
Request Example
{
"keys": [
"string"
]
}Responses
200 — Successful operation
Response Example
{
"removed": 1
}