I am developing a small game where latency matters and I have been reading this article https://samrueby.com/2015/01/26/why-is-https-faster-than-http/ and it claims that Https is faster than Http. I know that in HTTP connection is opened to transfer a single file/text/image and closes whereas in websocket connection stays open once handshake is done. I wanna know if data transfer speed can have some boost with secure connection in case of websocket.
Thank you.