I built a small open-source tool called dj-cache-panel after realizing Django gives you almost no visibility into what's inside your cache backends. It provides a unified Django admin interface to inspect, search, view, and delete cache keys across multiple backend types (Redis, Memcached, LocMem, Database cache, etc.). It auto-detects backends, works without models, requires zero configuration for most setups, and integrates cleanly with the admin. What it offers: - Search keys (exact or pattern-based) - Delete keys, flush keys - Backend-aware panels (Redis, Memcached, LocMem, DB cache) - Multi-backend support out of the box -Zero models, zero migrations, lightweight install Repo: https://github.com/yassi/dj-cache-panel Docs: https://yassi.github.io/dj-cache-panel/ pypi: https://pypi.org/project/dj-cache-panel/ Would love feedback, especially from anyone running multi-cache or production Redis setups. This is a natural extension to my previous work on dj-redis-panel, feel free to check that out as well. |