This document discusses scaling server-sent events (SSE), also known as long polling. It describes how long polling works but can be challenging to scale at the origin server. The document proposes offloading long polling connections to a content delivery network (CDN) using a publish-subscribe model with tokens to emulate server push at scale. This allows the CDN to handle the long-lived connections instead of the origin server. The document provides examples of how a CDN could implement this using common CDN features like request routing and caching.