Open
Description
Hello!
I do not completely understand why caching is disabled for methods except for GET, and if so, why is request passed as the first parameter to the function?
In my case, which is something in the lines of:
@cache
def redirect(request: Request):
pass
this leads to an error, because parameter request is passed twice (once as request, and another in args/kwargs)
Thanks!