I'd like to write an Angular2 application that consumes a REST API backend. However I'm worried about the number of req/sec that such a request will generate, due to Angular "watches" or equivalent change detection algorithm
Should I limit from the beginning the watches (data binding? change detection algorithm?) to one big request per page, there other ways to deal with the problem in Angular or should I consider a different architecture from the beginning (eg. web sockets)