This lesson teaches how to control whether network requests are cached or are pessimistically re-executed, with the help of the RxJS merge operator.
.shareReplay(1); - Doesn't work for version Rx5, what could do the save behaviour in version 5?
In RxJS v5 that would be .publishReplay(1).refCount()
What's the typical usage for not merging the stream with multiple subscriptions?