[Fixed]-How to disable Django REST Framework caching?

12👍

✅

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.

Leave a comment