Manage Redis Cache from Dashboard
- Create a REST endpoint called
https://strapi_url/api/cachein strapi withGETmethod to return all cached keysDELETEmethod to delete or clear cache
// GET http://localhost:1337/api/cache
// Response
interface CacheKeyApiResponse {
keys: string[];
}// DELETE http://localhost:1337/api/cache
// Response
// Http Status 200 OK