.coveragerc
CHANGES.rst
LICENSE
MANIFEST.in
Makefile
README.rst
pyproject.toml
requirements-dev.txt
requirements.txt
setup.cfg
setup.py
aiocache/__init__.py
aiocache/base.py
aiocache/decorators.py
aiocache/exceptions.py
aiocache/factory.py
aiocache/lock.py
aiocache/plugins.py
aiocache.egg-info/PKG-INFO
aiocache.egg-info/SOURCES.txt
aiocache.egg-info/dependency_links.txt
aiocache.egg-info/requires.txt
aiocache.egg-info/top_level.txt
aiocache/backends/__init__.py
aiocache/backends/memcached.py
aiocache/backends/memory.py
aiocache/backends/redis.py
aiocache/serializers/__init__.py
aiocache/serializers/serializers.py
docs/Makefile
docs/caches.rst
docs/conf.py
docs/configuration.rst
docs/decorators.rst
docs/index.rst
docs/locking.rst
docs/plugins.rst
docs/readthedocs.yml
docs/serializers.rst
docs/testing.rst
docs/images/architecture.png
docs/images/set_operation_flow.png
examples/alt_key_builder.py
examples/cached_alias_config.py
examples/cached_decorator.py
examples/marshmallow_serializer_class.py
examples/multicached_decorator.py
examples/optimistic_lock.py
examples/plugins.py
examples/python_object.py
examples/redlock.py
examples/run_all.sh
examples/serializer_class.py
examples/serializer_function.py
examples/simple_redis.py
examples/testing.py
examples/frameworks/aiohttp_example.py
examples/frameworks/sanic_example.py
examples/frameworks/tornado_example.py
tests/__init__.py
tests/utils.py
tests/acceptance/__init__.py
tests/acceptance/conftest.py
tests/acceptance/test_base.py
tests/acceptance/test_decorators.py
tests/acceptance/test_factory.py
tests/acceptance/test_lock.py
tests/acceptance/test_plugins.py
tests/acceptance/test_serializers.py
tests/performance/__init__.py
tests/performance/conftest.py
tests/performance/server.py
tests/performance/test_concurrency.py
tests/performance/test_footprint.py
tests/ut/__init__.py
tests/ut/conftest.py
tests/ut/test_base.py
tests/ut/test_decorators.py
tests/ut/test_exceptions.py
tests/ut/test_factory.py
tests/ut/test_lock.py
tests/ut/test_plugins.py
tests/ut/test_serializers.py
tests/ut/backends/__init__.py
tests/ut/backends/test_memcached.py
tests/ut/backends/test_memory.py
tests/ut/backends/test_redis.py