Generally people compared Websockets and http long polling.
But in connection pooling using http 1.1 (which browser does or we do from application server to db server ) , persistent connection is made and all http requests made through same connection (similar concepts of Websockets)
Only difference is Websockets is bidirectional but http 1.1 connection will be request/response based.
Any other difference?