I have written an appliacation using Flask, and am caching the response of various api calls. following is the configuration of my flask app
from flask import Flask
from flask_caching import Cache
app = Flask(__name__)
APICache = Cache(config={'CACHE_TYPE': 'filesystem','CACHE_DIR': "/cache"})
APICache.init_app(app)
How do I list all the key_prefix
of all the cached data that has been stored until now ?