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

fastapi-cache is a tool to cache fastapi response and function result, with backends support redis and memcached.

Results 119 fastapi-cache issues
Sort by recently updated
recently updated
newest added

Python: 3.11 SAM CLI, version 1.103.0 Installed in requirements.txt with: `> pip install "fastapi-cache2[redis]"` Looks to be a problem with `pendulum` but trying previous versions (2.1.0 and 2.1.1) didn't solve...

attempt to install failed: The currently activated Python version 3.10.12 is not supported by the project (^3.11). Trying to find and use a compatible version.

This flag indicated that md5 hash function usage is not used for security purposes. It is a good practice to add it so that security linters do not fail on...

I've implemented example from Github README docs and examples folder and none of them caches data, I've tested using redis directly from python and it works fine but with lib...

Adding `libsql` as an optional backend, enabling embedded or disk-local caches https://github.com/long2ice/fastapi-cache/issues/273

Hey, I went over the code of `RedisBackend` and I've seen the usage of lua script to delete dynamic keys: ``` if namespace: lua = f"for i, name in ipairs(redis.call('KEYS',...

Hello Pendulum devs decided to not update the library until 3.0 is out. https://github.com/sdispater/pendulum/issues/753#issuecomment-1739202965 Which means, this, and any other library, depending on it wont install on 3.12

Bumps [redis](https://github.com/redis/redis-py) from 4.6.0 to 5.0.1. Release notes Sourced from redis's releases. 5.0.1 Changes 🚀 New Features Provide aclose() / close() for classes requiring lifetime management (#2898) Add support for...

dependencies
python

I want to invalidate the cache if user call POST method to update data into database, so that th GET method can return the latest data to user.