[Answer]-Saving data in static files to reduce query time

1👍

Unless your data are very big (> GB), use a caching system (redis, or memcached), through the Django cache framework : https://docs.djangoproject.com/en/dev/topics/cache/

Leave a comment