How can I slow down the browser to avoid network congestion with retransmissions?
Please guys my web server (using RTOS and HTTP 1.0) closes the connection after each request. The browser keeps sending requests for ".js" files with HTTP 1.1, leading to retransmissions.
My question is :
1. Is this fast transmission because the browser uses HTTP 1.1 despite the server closing the connection?
2. How can I slow down the browser to avoid network congestion with retransmissions?
@Middleware & OS
4 Replies
Your .js file is loaded without problem in the browser?
Is like the browser's use of HTTP/1.1 causes fast retransmissions.
To slow down the browser, consider upgrading your server to support HTTP/1.1 or implement a delay in your server to pace responses.
Let me know if it works
@Marvee Amasi did you get this working?
Solution
Yes I upgraded to HTTP 1.1 which handled the retransmission issues