Created by: grantjenks
Why this framework/library/software/resource is awesome?
DiskCache is awesome for many reasons:
- Django-compatible cache backend replaces the essentially broken filebased cache backend that ships in Django core. Read more details and benchmarks.
- Cache benchmark comparison shows key lookups are faster than memcached and redis.
- Built atop SQLite and the file system, it's thread-safe and multiprocess-safe.
- Supports multiple eviction policies including least-recently-used, least-frequently-used, and least-recently-stored.
- Supports "tag" metadata and eviction by "tag".
- 100% test coverage and hours of heavy stress in production.
- Fully documented with benchmark comparisons.
Vote for this pull request
Who agrees that this change should be merged could add your reactions (e.g.
Added DiskCache reference under Caching.