@fiftyfivetech/strapi-plugin-cache-purge
v1.0.2
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/cachein strapi withGETmethod to return all cached keysDELETEmethod 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