Is it worth to create new websocket for new feature that should be real time or should i use one web socket connection for all thing?
My web app has some heavy data transfering ( e.g every few second users recieves/or sends data - it gets heavy with a lot of users ) , but some typical transfering like chat.
Should i use one web socket for both functionalities, or should i create new web socket connection for every "heavy" data oriented real-time functionality?
Thanks for help!