@fiftyfivetech/strapi-plugin-cache-purge
v1.0.1
Published
Strapi Manage Redis Cache from Dashboard
Keywords
Readme
Strapi Plugin Cache Purge
Manage Redis Cache from Dashboard
How to Config
- Create a REST endpoint called
https://strapi_url/api/cache
in strapi withGET
method to return all cached keysDELETE
method to delete or clear cache
Fetch Keys Request
// GET http://localhost:1337/api/cache
// Response
interface CacheKeyApiResponse {
keys: string[];
}
Clear Cache Request
// DELETE http://localhost:1337/api/cache
// Response
// Http Status 200 OK