Hey John, 2011/1/19 John Robson <[email protected]>: > I do not know if this is normal or is it a bug, but if use this command, > when open the site in more than 7 tabs, the new ones are very slow.
This is normal, in so far that the RFC2616 HTTP indicates that browsers should not open more than 2 connections to the same server. What enableUpdates() does is leave a connection open waiting for a response (or when using websockets, have an open web socket connection). Most browsers violate this rule since these days servers do not suffer that much anymore from open connections (at least not the good ones that use asynchronous I/O). Most browsers allow 6 or 8 connections, and next generation browsers go to 16 but IE 6 for example has only 2! The traditional workaround for this is to use different DNS records (e.g. d1.hibernator.com, d2.hibernator.com, ...) which resolve to the same server IP address. ASFAIK, this workaround is not yet provided by Wt (which uses relative URLs throughout which automatically inherit the server name from the document's base URL). Regards, koen ------------------------------------------------------------------------------ Protect Your Site and Customers from Malware Attacks Learn about various malware tactics and how to avoid them. Understand malware threats, the impact they can have on your business, and how you can protect your company and customers by using code signing. http://p.sf.net/sfu/oracle-sfdevnl _______________________________________________ witty-interest mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/witty-interest
