关于服务器的长连接和短连接
一旦建立tcp连接,除非显示的指定
服务端response.setHeader("Connection", "close") 或 客户端request.setRawHeader("Connection", "close")
否则将在readTimeout时间中复用连接tcp连接,当定时器超时时,将把空闲的连接删除。
一旦建立tcp连接,除非显示的指定
服务端response.setHeader("Connection", "close") 或 客户端request.setRawHeader("Connection", "close")
否则将在readTimeout时间中复用连接tcp连接,当定时器超时时,将把空闲的连接删除。