Performance of using same observable in multiple places in template with async pipe
Every use of observable$ | async will create a new subscription(and therefor an individual stream) to the given observable$ – if this observable contains parts with heavy calculations or rest-calls, those calculations and rest-calls are executed individually for each async – so yes – this can have performance implications. However this is easily fixed by … Read more