From ab3f8a3a7a0fa691f61347b2f8f07c86bb094fe7 Mon Sep 17 00:00:00 2001 From: Virginia Dooley Date: Thu, 16 Mar 2023 02:04:18 +0000 Subject: [PATCH] docs: Optimize server interaction - insert updated link. (#49438) PR Close #49438 --- aio/content/guide/http-optimize-server-interaction.md | 6 ++++++ 1 file changed, 6 insertions(+) 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`.