fastapi-caching
fastapi-caching copied to clipboard
Cache library for FastAPI with tag based invalidation
I can't run pytest, getting the following error: ``` ImportError while loading conftest '/home/ferdinand/dev/fastapi-caching/tests/conftest.py'. tests/conftest.py:5: in from . import helpers tests/helpers.py:2: in from fakeredis.aioredis import FakeConnectionsPool E ImportError: cannot import...
The cache should respect [`Cache-Control`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control#no-cache_2) headers sent by the client, i.e. skip fetching from cache in case of `no-cache` or in case `max-age` is exceeded.
First of all, thanks a lot for this project, it's basically exactly what I was looking for! :raised_hands: However, I encountered some limitations quite soon. I'd like to have **more...