First, let's try to put some order in the terminology used.
We might use one of the several umbrella terms to refer to the set of technologies available to asynchronously sent events from a web server to a web client (and vice versa). The "Push Technology" term has been used for fifteen years. Now, the "Web Streaming" term is gaining consensus among the analysts (see Gartner, "Cool Vendors in Application and Integration Platforms, 2012", by Massimo Pezzini and Jess Thompson, 11 April 2012).
The important thing here is that we are talking about Web-based communication, that is, leveraging Web protocols. There are tons of messaging protocols and technologies that are not web based (most of MOMs, for example), so they are not part of Push Technology (or Web Streaming).
Then, you can distinguish between two sub-categories of Push Technology (or Web Streaming):
- HTTP based
- WebSockets based
Both HTTP and WebSockets are Web protocols.
If you explode the HTTP-based push mechanisms, you can identify:
- HTTP Streaming
- HTTP Long Polling
- HTTP Polling
Traditionnaly, the "Comet" term (coinded in 2006 by Alex Russell) has been referring to both HTTP Streaming and HTTP Polling (while now there is some debate and whether it should be a more general umbrella term or not).
Now, let's go to your questions:
1) The performance of WebSockets and HTTP Streaming, in terms of latency and bandwidth, are pretty identical. While Long Polling and Polling, as shown in the reported chart, can have important overheads, depending on the use case.
The problem with Web§Sockets is that they are not yet universally available, in terms of:
- Browser support: There are still many browser versions not supporting WebSockets in their stable build (including IE and Safari, for example)
- Intermediary support: There are still many proxies, firewalls, antivirus, NAT, load balancers, etc. not supporting WebSockets.
So, the best approach is to choose a solution that automatically chooses between WebSockets and HTTP (Streaming and Long Polling) based on the infrastructure. Several push solutions feature such automatic choice, though implemented in different ways and with different degrees of reliability. To the products you mentioned, I should obviously add Lightstreamer http://www.lightstreamer.com [of which I am the CTO].
2) If WebSockets fall back to HTTP, then you should go for HTTP Streaming. If you have to fall back again (due to some intermediaries blocking any form of streaming), you should got for HTTP Long Polling. HTTP Polling should be the last choice. Of course, this implies having a dedicated server that is able to scale with all these transports.
If you look at specific web sites, like those you mentioned, their choice mainly depends on their development history. They probably optimized their custom implementations, perhaps leading to a solution which is not theoretically the best but which works best for them.
3) Originally, they used HTTP Long Polling. I guess they are now introducing WebSockets.
4) As far as we are not talking about streaming video, all the approaches discussed above are fine for pushing images. The advantage of WebSockets is that they allow to push pure binary data as well, while HTTP in most cases requires some encoding.
5) It all depends on the servers, which must be able to scale. Consider that good Push servers can scale to million of users with low traffic. When the average message rates increases, the number of concurrent users per box decreases.
6) Didn't understand the question.
7) My suggestion: choose a good all-round solution, focusing on the server. Then you will check what client-side components and libraries are available.