├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── fastapi_cache ├── __init__.py ├── backends │ ├── __init__.py │ ├── base.py │ ├── memory.py │ ├── redis.py │ └── utils │ │ ├── __init__.py │ │ └── ttldict.py ├── registry.py └── version.py ├── pytest.ini ├── requirements-test.txt ├── requirements.txt ├── setup.py ├── tests ├── __init__.py ├── memory_tests.py ├── redis_tests.py ├── registry_tests.py └── ttldict_tests.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comeuplater/fastapi_cache/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comeuplater/fastapi_cache/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comeuplater/fastapi_cache/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comeuplater/fastapi_cache/HEAD/README.md -------------------------------------------------------------------------------- /fastapi_cache/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comeuplater/fastapi_cache/HEAD/fastapi_cache/__init__.py -------------------------------------------------------------------------------- /fastapi_cache/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastapi_cache/backends/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comeuplater/fastapi_cache/HEAD/fastapi_cache/backends/base.py -------------------------------------------------------------------------------- /fastapi_cache/backends/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comeuplater/fastapi_cache/HEAD/fastapi_cache/backends/memory.py -------------------------------------------------------------------------------- /fastapi_cache/backends/redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comeuplater/fastapi_cache/HEAD/fastapi_cache/backends/redis.py -------------------------------------------------------------------------------- /fastapi_cache/backends/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastapi_cache/backends/utils/ttldict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comeuplater/fastapi_cache/HEAD/fastapi_cache/backends/utils/ttldict.py -------------------------------------------------------------------------------- /fastapi_cache/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comeuplater/fastapi_cache/HEAD/fastapi_cache/registry.py -------------------------------------------------------------------------------- /fastapi_cache/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comeuplater/fastapi_cache/HEAD/fastapi_cache/version.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comeuplater/fastapi_cache/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comeuplater/fastapi_cache/HEAD/requirements-test.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comeuplater/fastapi_cache/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/memory_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comeuplater/fastapi_cache/HEAD/tests/memory_tests.py -------------------------------------------------------------------------------- /tests/redis_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comeuplater/fastapi_cache/HEAD/tests/redis_tests.py -------------------------------------------------------------------------------- /tests/registry_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comeuplater/fastapi_cache/HEAD/tests/registry_tests.py -------------------------------------------------------------------------------- /tests/ttldict_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comeuplater/fastapi_cache/HEAD/tests/ttldict_tests.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comeuplater/fastapi_cache/HEAD/tox.ini --------------------------------------------------------------------------------