One thing I really miss when working primarily with Django from the React/JS frontend world is Tanstack Query style caching. Meaning you set a cache key as a list, e.g. `[ “invoice”, “lists”]` or `[“invoice”, “lists”, “for_export”]`, and you can invalidate both by including the first two elements or just the one for export by including that entire key.
↧