Hi,
i would like to understand what might be the best practice to unsubscribe from my observables.
Right now i am doing it more or less instantly if a Component gets destroyed, or i am not doing it at all (for like super frequent pages / components)
In some cases i can see why it would be useful to unsubscribe, but lets say i have some activities in my application.
The first time loading takes a little while, but after that it is super fast. But only if i do not unsubscribe.
So what kind of numbers / experience are good values?
Can i keep up like 100 subscriptions without worrying about it? Should i better unsubscribe all of them?
What would you suggest?
Thank you :)