Slow Requests on Local Flask Server

前端 未结 9 1972
无人共我
无人共我 2020-12-02 05:38

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

9条回答
  •  伪装坚强ぢ
    2020-12-02 05:53

    Instead of calling http://localhost:port/endpoint call http://127.0.0.1:port/endpoint. This removed the initial 500ms delay for me.

提交回复
热议问题