├── .gitignore ├── README.md ├── autocache.py ├── autocache_redis.py ├── cache.py ├── test_autocache.py ├── test_autocache_redis.py └── test_cache.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/pycache/HEAD/README.md -------------------------------------------------------------------------------- /autocache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/pycache/HEAD/autocache.py -------------------------------------------------------------------------------- /autocache_redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/pycache/HEAD/autocache_redis.py -------------------------------------------------------------------------------- /cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/pycache/HEAD/cache.py -------------------------------------------------------------------------------- /test_autocache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/pycache/HEAD/test_autocache.py -------------------------------------------------------------------------------- /test_autocache_redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/pycache/HEAD/test_autocache_redis.py -------------------------------------------------------------------------------- /test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma6174/pycache/HEAD/test_cache.py --------------------------------------------------------------------------------