From 5fa4c0cc53b3d4d752a26358dacedf59b7011020 Mon Sep 17 00:00:00 2001 From: Eric Lam <53859607+airyclam@users.noreply.github.com> Date: Sun, 25 Apr 2021 17:48:21 -1000 Subject: [PATCH] typo line 88, page -> pages --- docs/developers/design/app/imports/api/pub-sub.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developers/design/app/imports/api/pub-sub.md b/docs/developers/design/app/imports/api/pub-sub.md index db0422ae..48c0717f 100644 --- a/docs/developers/design/app/imports/api/pub-sub.md +++ b/docs/developers/design/app/imports/api/pub-sub.md @@ -85,7 +85,7 @@ The point of this section is to note that the default approach to pub-sub in Met The advantage of the default approach is simplicity and minimization of the data held by the client at any given time. The disadvantage is that if two pages involve the exact same set of subscriptions, and the client navigates from one of these pages to the other, then the default approach results in data being sent to the client for first page, then discarded when the client leaves that page, only to have the server resend the exact same data to the client when the second page is loaded. -Upon deploying RadGrad for the first time, we discovered that page were loading slowly and that much of this latency was due to the overhead of subscribing and unsubscribing each time the client visited a new page. To solve this problem, RadGrad leverages the [MeteorHacks SubsManager](https://github.com/kadirahq/subs-manager) package, which provides the ability to cache subscription data on the client side. +Upon deploying RadGrad for the first time, we discovered that pages were loading slowly and that much of this latency was due to the overhead of subscribing and unsubscribing each time the client visited a new page. To solve this problem, RadGrad leverages the [MeteorHacks SubsManager](https://github.com/kadirahq/subs-manager) package, which provides the ability to cache subscription data on the client side. Our implementation of subscription caching is accomplished by three global templates: