fastapi-cache icon indicating copy to clipboard operation
fastapi-cache copied to clipboard

Not cached with postman

Open mfroger opened this issue 6 months ago • 2 comments

Hi all,

My cache system is working on browser but not in postman

@app.get("/", include_in_schema=False) @cache(expire=600) async def app_home(request: Request): return {'Domain : %s' % generate_random(20)}

Do you have an idea ?

mfroger avatar Dec 06 '23 11:12 mfroger