Just starting to play around with Flask on a local server and I\'m noticing the request/response times are way slower than I feel they should be.
Just a simple serve
Instead of calling http://localhost:port/endpoint call http://127.0.0.1:port/endpoint. This removed the initial 500ms delay for me.
http://localhost:port/endpoint
http://127.0.0.1:port/endpoint