brash-afternoon-80519
03/25/2026, 3:16 AMbrash-afternoon-80519
03/26/2026, 11:00 PMpowerful-spoon-16837
03/27/2026, 2:38 PMfreezing-postman-69602
04/01/2026, 6:53 PMbackgroundSync in the Swift SDK uses a long-lived SSE subscription for streaming updates.
Which means,
• Opening the stream is an HTTP request and messages delivered over that already-open stream are NOT separate HTTP requests.
• If the stream disconnects and reconnects, each reconnect is a new request.
That’s why request volume can be much higher than your concurrent user count. so, 4,000 users can absolutely generate 200k+ requests/day if those clients stay active for a while and the stream reconnects periodically.
If you don’t need flags to update in real time during a session, try the manual approach of managing features or use offline mode.
Hope this helps.brash-afternoon-80519
04/08/2026, 1:59 AM