How to disable Django REST Framework caching? How to disable Django REST Framework caching? django django

How to disable Django REST Framework caching?


You can read here about django queryset caching. The best advice seems to be: re-run the .all() method to get fresh results. Using object.property may give you cached results.