-2
votes
1answer
235 views

Sending binary data from a computer to a server using HTTP or sockets [closed]

I am working on a script which can send data to a remote server computer and I am wondering which is better to achieve this functionality, the high level functionality provided by HTTP or just raw ...
6
votes
2answers
391 views

How do I optimize a web application for high-latency users?

Basically, I have an application that does searches and requests results from a backend via long polling. It connects to the backend which collects results for 500 ms then sends them back to the ...
4
votes
4answers
281 views

Is there a canonical resource on TCP/IP, networking, and related areas?

As a relatively-new Python programmer, I'm finding more and more that networking as it relates to the web and web development is becoming increasingly important to understand. When I was an active C# ...