14 June 2008
Comet Daily » Blog Archive » The Future of Comet: Part 2, HTML 5’s Server-Sent Events
Comet doesn’t have to be a hack. Currently, as we saw last time, Comet relies on undocumented loopholes and workarounds, each one with some drawbacks. We can make Comet work effectively in every browser, using streaming transports on subdomains of the same second-level domain, or using script tag long polling across domains. But this leaves Comet developers implementing (and more frustratingly, debugging) several transports across several browsers. Traps are numerous and easy to stumble into.
event-source is the future of all Comet things.
05 May 2008
Comet Daily » Blog Archive » 20,000 Reasons Why Comet Scales
After some recent optimizations, the Dojo Cometd implementation of the Bayeux protocol running on the Jetty web server can now handle up to 20,000 simultaneous users per server while maintaining sub-second latency.
impressive numbers. Does the Twisted one can beat that?