AWS Lambda - Buffered reader

后端 未结 3 912
野的像风
野的像风 2021-01-27 21:31

I am using Java on AWS Lambda to get the URL source code of the site. I have the following code:

URL yahoo = new URL(url);
URLConnection yc = yahoo.openConnectio         


        
3条回答
  •  伪装坚强ぢ
    2021-01-27 21:51

    This is the point at which the connection is made, the request sent, and the first part of the response read. Evidently the server is slow at one or more of those things.

提交回复
热议问题