diff --git a/aio/content/guide/http-optimize-server-interaction.md b/aio/content/guide/http-optimize-server-interaction.md index 3625f28d016..c364326ae44 100644 --- a/aio/content/guide/http-optimize-server-interaction.md +++ b/aio/content/guide/http-optimize-server-interaction.md @@ -37,6 +37,12 @@ Rather than forward every `searchText` value directly to the injected `PackageSe The code sets `packages$` to this re-composed `Observable` of search results. The template subscribes to `packages$` with the [AsyncPipe](api/common/AsyncPipe) and displays search results as they arrive. +
+ +See [Using interceptors to request multiple values](guide/http-interceptor-use-cases#cache-refresh) for more about the `withRefresh` option. + +
+ ## Using the `switchMap()` operator The `switchMap()` operator takes a function argument that returns an `Observable`.