/v2/cache/clear

Controls server side analysis caches.

This API endpoint allows manual cleaning of all caches related to analyses and partial results. This endpoint should not be normally used in production as it may severely degrade performance.

If there is a need to run an analysis completely from scratch, the request's useCache option set to false should be preferred over clearing the entire cache content.

Access Methods

POST

URL Parameters

None

Request Body

None

Response

This endpoint always returns HTTP 200 (OK).

Errors

This endpoint does not return error status codes, it always returns HTTP 200 (OK).

Examples

The following curl command invokes cache/clear API endpoint:

curl -XPOST http://localhost:8080/api/v2/cache/clear

which translates to the following HTTP request

POST /api/v2/cache/clear HTTP/1.1