class MySuperService { cache: { [key:string] : Observable } = {}; getItem(id number){ let promise = this.cache[id]; if (!promise){ promise = this._http.get('/entities'); this.cache[id] = promise; } return promise; } }