mirror of
https://github.com/long2ice/fastapi-cache.git
synced 2026-03-25 04:57:54 +00:00
Merge pull request #33 from DevLucca/master
add `no-cache` to cache exclusion
This commit is contained in:
@@ -96,8 +96,9 @@ def cache(
|
||||
copy_kwargs = kwargs.copy()
|
||||
request = copy_kwargs.pop("request", None)
|
||||
response = copy_kwargs.pop("response", None)
|
||||
|
||||
if (
|
||||
request and request.headers.get("Cache-Control") == "no-store"
|
||||
request and request.headers.get("Cache-Control") in ("no-store", "no-cache")
|
||||
) or not FastAPICache.get_enable():
|
||||
return await ensure_async_func(*args, **kwargs)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user