I'm writing a simple web application with Flask and will run it using Gunicorn. I'd like to know how to cache the pages returned by this application using Varnish.
I've been able to use Varnish with a Django application, also running on Gunicorn, by following this article. The instructions included using one extra application and some middleware, but I'm not sure how to do it with Flask.
Thanks for your suggestions!