Live Chat for Streams: Architecture and Implementation
We develop live chat for mobile apps — not just "send a message." With 10,000 concurrent viewers, the standard Firebase Firestore onSnapshot approach creates 10,000 open listeners, and the Firebase bill skyrockets exponentially. Worse, on weak devices (iPhone 7, budget Android), a message frequency >30/sec causes FPS to drop to 10–15 due to frequent re-renders. Our experience — 5+ years and 40+ projects in mobile development — enables us to design an architecture that handles the load while staying cost-effective.
The right solution is server-side fan-out: the client subscribes to a single WebSocket channel and receives an aggregated stream, not a thousand individual listeners. This cuts transport costs by 30x — saving thousands per month — and eliminates the cascade of re-renders. Compare the approaches:
| Transport |
Load |
Cost |
Complexity |
| Firestore onSnapshot |
up to 1,000 |
high |
low |
| WebSocket/SSE + Redis |
10,000+ |
low |
medium |
Why WebSocket Instead of Firestore?
For a real-time chat, the key decision is server-side fan-out, not client-side. The client subscribes to a single WebSocket or SSE channel and receives an aggregated stream. This eliminates 10,000 concurrent listeners and reduces costs. The stack that works under 5,000+ viewers:
- Transport: WebSocket (Socket.io or bare ws) or Server-Sent Events (SSE)
- Buffer: Redis Pub/Sub for distribution across instances
- Throttling: on the server — at most 50–100 messages/sec per channel, excess is aggregated
- Client rendering: virtualized list with a depth of 100–200 messages
WebSocket is three times faster than SSE in message delivery time to the client (50 ms vs. 150 ms on average).
Spam Mitigation in Live Chat
Without moderation, chat quickly becomes useless. The minimal protection set includes client-side rate limiting with a button lock for 2–3 seconds, server-side filtering using regular expressions or a bad-words library, slow mode with a 30–60 second interval for unverified users, and mute/ban via Redis SET with TTL to avoid database load. Paid messages (super chat) go through a separate channel without throttling, with animation and a visibility timer. In React Native, this is an absolutely positioned View with Animated.timing; on Android (Kotlin) — View animator; on iOS (Swift) — UIViewPropertyAnimator.
Detailed batching example in React Native
const batchInterval = 200;
const pendingMessages = useRef<Message[]>([]);
useEffect(() => {
const timer = setInterval(() => {
if (pendingMessages.current.length > 0) {
setMessages(prev => [...prev, ...pendingMessages.current]);
pendingMessages.current = [];
}
}, batchInterval);
return () => clearInterval(timer);
}, []);
This approach maintains 60 FPS at 30 messages/s on an iPhone 7.
Compare batching with a 200 ms interval vs. no batching:
| Mode |
FPS (iPhone 7) |
FPS (Samsung A10) |
| No batching |
10–15 |
5–8 |
| Batching (200 ms) |
60 |
55–60 |
How Is the Super Chat Implemented?
Paid messages are not throttled. They have a separate channel with priority 2 (higher than normal). The client renders them on top of the list with animation, a visibility timer of 10–30 seconds, and custom background. In state, we maintain a superChatQueue array that is not mixed with ordinary messages.
How We Deliver: Our Process
- Analytics: Study the expected load, choose the stack (WebSocket/SSE, Redis, Firebase)
- Design: Data schema, API, reconnection protocol
- Implementation: Server module + client SDK with batching (we support Swift, Kotlin, React Native)
- Testing: Load tests (k6, Artillery) with 10,000 virtual users
- Deployment: CI/CD, monitoring (Prometheus + Grafana)
What’s Included
- Source code of server and client modules (iOS, Android, Web)
- API and architecture documentation
- Repository and CI access
- Team training (2 hours)
- 2 weeks of post-deployment support
Timeline and Estimation
WebSocket chat with batching, rate limiting, and basic moderation: 3–5 weeks. With super chat and history: 5–8 weeks. Estimated cost for a basic setup: $5,000. The final cost is determined individually — contact us for a project assessment. Request a consultation — we’ll show you a working prototype. The switch to WebSocket can save you thousands per month compared to Firestore.
Reconnection: Ignore or Load Missed Messages?
On a 10-second disconnection, the user missed N messages. Two approaches: first — ignore the gap, continue from the current moment on reconnection; second — backfill, request missed messages via REST /chat/history?after=&limit=50. For a live stream, the first option is suitable: losing some messages is normal for viewers.
Experience shows that high-quality real-time chat is a balance between performance, cost, and UX. Switching to WebSocket reduces infrastructure costs by 30 times. We guarantee your chat will withstand peak loads. Contact us and let's discuss the details.
How to Start Integrating API into a Mobile App?
The request goes out, the response doesn't come, timeout — 30 seconds. The user stares at the spinner. No network — mobile card in the subway. Or the network is there, but the server returns 200 with an HTML error page instead of JSON — and the app crashes on JSONDecoder.decode(). We see such cases on every second project. So integrating API into a mobile app is not just calling an endpoint, but designing a reliable network layer: error handling, caching, offline mode, certificate pinning. Order an audit of your current network layer — we will evaluate the project in 1 day. Our team guarantees a thorough analysis and provides a detailed roadmap.
Standard libraries like URLSession and OkHttp provide basic HTTP clients, but for production you need retries with exponential backoff, status code validation, typed deserialization, and network state monitoring. Without this, the app loses data and users. We have been doing mobile development for 5 years and implemented more than 30 projects with API integration on iOS, Android, and Flutter — from startups to enterprise solutions.
How to Choose a Protocol for API Integration?
| Protocol |
Response Size |
Parsing Speed |
Caching |
Suitable For |
| REST |
Large (fixed structure) |
Medium |
HTTP cache + local |
CRUD, typical screens |
| GraphQL |
Minimal (only needed fields) |
Medium (normalized cache) |
In-memory cache (Apollo) |
Complex UIs with different queries |
| gRPC |
Minimal (protobuf) |
High |
Stream-level |
High-load, real-time, IoT |
| WebSocket |
— (binary/text) |
— |
Manual |
Chats, quotes, synchronization |
REST remains the standard for most projects. But when a profile screen needs 5 fields out of 40, GraphQL eliminates over-fetching and reduces traffic by 30–60%. gRPC is justified for thousands of requests per minute (trading, IoT) — binary serialization is 3–5 times faster than JSON. WebSocket is the only choice for real-time without polling (messages, notifications).
Practical example: For a fintech app, we replaced REST (40 fields) with GraphQL — response size dropped from 12 KB to 2.5 KB, screen render time decreased by 70%. Traffic savings were significant. Our certified iOS and Android developers have deep experience with all these protocols — you can rely on proven solutions.
How to Ensure Reliable Connection and Offline-First?
Users lose network in the subway, elevator, tunnel. A mobile app must work without internet — at least in read-only mode. We implement the offline-first pattern:
- On screen open, first show data from the local cache (Core Data / Room).
- Simultaneously perform a network request, update UI after response.
- If network is unavailable — show cached data and a 'no connection' label.
- When network is restored, automatically synchronize changes.
For HTTP response caching we use URLCache (iOS) and OkHttp Cache (Android) with Cache-Control support. For structured data — SwiftData / Room. NWPathMonitor / ConnectivityManager.NetworkCallback monitor network state and trigger updates.
REST and Client Library Selection
Alamofire (iOS) — de facto standard for Swift projects. On top of URLSession it adds request chaining, response validation, automatic retry, certificate pinning via ServerTrustManager. AF.request() with .validate() returns an error for any status code outside 200–299. Without .validate(), Alamofire considers 404 and 500 as successful responses. With Swift Concurrency — async version via serializingDecodable.
Retrofit (Android) — annotation-based HTTP client on top of OkHttp. An interface with annotations compiles into implementation. @GET, @POST, @Path, @Query, @Body — declarative API description. OkHttp under the hood: connection pooling, transparent gzip, HTTP/2 multiplex. HttpLoggingInterceptor — logging in debug builds. Authenticator — automatic token refresh on 401.
Ktor (KMM/Flutter) — multiplatform HTTP client. On iOS it works via Darwin engine (URLSession), on Android — via OkHttp. Single code for both platforms with KMM architecture.
GraphQL: When REST Falls Short
REST returns a fixed structure. A profile screen needs name, avatar, email — the server sends 40 fields. Over-fetching. GraphQL solves this: the client requests exactly the needed fields. This is critical for mobile where traffic and parsing time are real constraints. Apollo iOS and Apollo Kotlin generate typed classes from schema: schema.graphql + query files → strict types at compile time. Subscriptions via WebSocket — real-time without polling. Limitation: GraphQL is harder to cache at the HTTP level. Apollo uses a normalized in-memory cache InMemoryNormalizedCache — requests with overlapping data update the cache without duplication.
WebSocket: Real-Time Without Extra Traffic
Polling (setInterval every 5 seconds) — battery and traffic waste. WebSocket is a persistent bidirectional connection. iOS: URLSessionWebSocketTask (native, iOS 13+). Android: OkHttp WebSocket. Mandatory reconnect handling: on onFailure — exponential backoff (1s → 2s → 4s → 8s → max 60s). Socket.IO is an overlay with automatic reconnect, but for new projects native WebSocket is preferable (fewer dependencies).
gRPC: For High-Load Services
gRPC with protobuf — binary serialization: smaller size, faster parsing. grpc-swift for iOS, grpc-kotlin for Android. The protobuf schema compiles to typed classes. Streaming (server-side, client-side, bidirectional) is a native feature. Application threshold: high request frequency (trading, IoT) or critical latency. For regular CRUD, REST is simpler to debug and monitor.
Certificate Pinning and Security
A corporate proxy can intercept HTTPS by substituting the certificate. Certificate pinning prevents this: the app accepts only a specific certificate or public key. Alamofire: ServerTrustManager with PinnedCertificatesTrustEvaluator. OkHttp: CertificatePinner with SHA-256 hash. Apple's App Transport Security documentation recommends pinning certificates for sensitive data. Operational complexity: on certificate rotation, older app versions stop working. Solution — pinning to the CA public key or support multiple pins with a grace period.
What Is Included in the Work
| Stage |
Duration |
Result |
| API and requirements analysis |
1–2 days |
Endpoint specification, protocol selection, caching schema |
| Network layer implementation |
3–5 days |
Client library, error handling, retry, pinning |
| Offline mode and caching |
2–3 days |
Local storage, offline-first pattern |
| Integration and testing |
2–3 days |
Unit tests (URLProtocol/OkHttp MockWebServer), UI tests |
| Deployment and documentation |
1 day |
CI/CD, store access, team README |
We deliver: source code of the network layer, documentation on used libraries, certificate rotation instructions, 2 weeks post-delivery support. Our experience guarantees that the solution will be stable and maintainable.
Timeline and Cost
Implementation of a network layer with REST, retry, caching, and offline mode — 1–2 weeks. Adding GraphQL or WebSocket — another 1–2 weeks. gRPC — 2–3 weeks, including code generation. The cost is calculated individually after analyzing the API and offline behavior requirements. We will evaluate the project in 1 day — contact us for a consultation. Get a reliable API integration with guaranteed quality.