Flushall

Cache Flushall

A function to flush all items from the cache. (All items will be deleted from the cache with this) Raises HTTPException if the cache is not initialized or if the cache type does not support flushing. Returns a dictionary with the status of the operation.

Usage:

curl -X POST http://0.0.0.0:4000/cache/flushall -H "Authorization: Bearer sk-1234"
POST/cache/flushall
Authorization
Response

Successful Response

Body
any
Request
const response = await fetch('/cache/flushall', {
    method: 'POST',
    headers: {},
});
const data = await response.json();