One thing I've heard is that Angular's change detection can potentially cause lag in an application when receiving a large amount of data from a websocket. In my setup, the data comes from the socket, updates a variable in the component, and then triggers change detection to update the HTML. But what if I were to directly use the variable updated by the socket in my template? Would this bypass/change the need for change detection and possibly improve performance?
-----------------------------------------------.