I'm using Server Sent Events in my web application and have 2 persistent connections on every page for real time notifications from the server. I faced a problem where browsers limit concurrent connections to the same domain (e.g. FF limit is 6) so when user will open few pages, next connection will be queued by browser and the page will freeze.
This is killing all advantage of SSE vs simple polling.
Is there any workaround except make SSE connection via some subdomain to not freeze main domain connections?