惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

爱范儿
爱范儿
腾讯CDC
博客园 - 司徒正美
A
About on SuperTechFans
H
Help Net Security
J
Java Code Geeks
C
Check Point Blog
B
Blog RSS Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
MongoDB | Blog
MongoDB | Blog
U
Unit 42
Hugging Face - Blog
Hugging Face - Blog
Last Week in AI
Last Week in AI
MyScale Blog
MyScale Blog
V
Visual Studio Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
H
Hackread – Cybersecurity News, Data Breaches, AI and More
F
Fortinet All Blogs
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
GbyAI
GbyAI
博客园 - 【当耐特】
雷峰网
雷峰网

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Do You Really Need WebSockets?
Prajwol Shre · 2026-04-22 · via DEV Community

Every time a feature had the word "real-time" in it, my brain would jump straight to WebSockets. It felt like the right, serious, production-grade choice. Turns out, it's often overkill. And understanding why has changed how I think about building things.


The Question Nobody Asks First

Before anything else, ask this:

Does the client need to send data back to the server through this connection?

That's it. That's the question.

WebSockets give you a two-way channel, the server can talk to the client, and the client can talk back, over the same persistent connection. But most of the "real-time" features we build are actually one-way:

  • A notification badge that updates when you get a new message
  • A live score updating on a sports page
  • A progress bar for a background job
  • A feed that shows new posts as they come in

In all of these cases, the server is pushing data to you. You're just watching. The client never needs to send anything back through that connection. A regular HTTP request handles user interactions just fine.

So why are we opening a two-way connection?


What WebSockets Actually Cost

I used to think WebSockets were basically free - just open a connection and listen. But there's real complexity on both sides.

On the client, you're suddenly responsible for a lot of things which HTTP handles for you automatically.

  • Reconnection logic: WebSocket connections drop. Networks are flaky, mobile users switch between WiFi and cellular, and you have to write code to detect disconnects and retry with backoff.
  • Connection state: is the socket open, connecting, or closed? You have to track this and decide what to show the user.
  • Auth: HTTP requests carry your cookies and headers automatically. WebSockets don't work that way, so you end up handling auth separately, which is messier than it sounds.

The server side has its own cost too. HTTP is stateless, a request comes in, gets handled, and it's done. The server moves on. WebSockets are the opposite. Every connected client is a persistent, open connection the server has to keep alive. That means memory. Not a huge amount per connection, but it adds up - if you have 10,000 users with your app open, that's 10,000 connections sitting there consuming RAM, even when nothing is happening.

All of this is manageable. But for a notification badge? That's a lot of weight to carry for something pretty simple.


Server-Sent Events: The Simpler Way to Push Data

SSE (Server-Sent Events) is an HTTP-based way for the server to push updates to the client. It's built into the browser. No library needed.

const stream = new EventSource('/api/notifications/stream');

stream.onmessage = (event) => {
  const data = JSON.parse(event.data);
  updateNotificationBadge(data.count);
};

stream.onerror = (err) => {
  // the browser will auto-reconnect
  console.error('Stream error', err);
};

Enter fullscreen mode Exit fullscreen mode

That's the entire client-side code. The browser handles reconnection automatically - it's part of the spec. If the connection drops, it retries, and the server knows where to pick up.

On the surface it might look similar to a WebSocket, but the key difference is: it's just HTTP. Your cookies work, your auth headers work, it goes through your existing middleware - everything composes naturally. And because each SSE connection is still a regular HTTP request under the hood, the server isn't holding some special stateful relationship with the client. Much lighter.

The limitation is that it's one-way. The client can only receive. But for notifications, live feeds, and progress updates - that's all you need. When the user takes an action, you fire a normal fetch() POST. Simple.


Good Old Polling: Simpler Than You Think

Polling feels almost too simple. But simple is underrated.

async function checkNotifications() {
  const res = await fetch('/api/notifications/count');
  const { count } = await res.json();
  updateBadge(count);
}

// Check every 30 seconds
setInterval(checkNotifications, 30_000);

Enter fullscreen mode Exit fullscreen mode

If your feature doesn't need updates faster than every 30–60 seconds, this is genuinely fine. It's stateless, it's easy to debug, it works everywhere, and there's almost no way it breaks in a weird way at 2am.


So When Are WebSockets Actually the Right Call?

When both of these are true:

  1. The client needs to send data frequently - not just occasional user actions
  2. That communication needs to be low-latency and continuous

Real examples:

  • Chat — you're sending and receiving messages constantly
  • Collaborative editing - like a shared doc where multiple users type simultaneously
  • Multiplayer games - fast, continuous state sync in both directions

The pattern is high-frequency, bidirectional communication. If you have that, WebSockets make sense. If you don't, you're adding complexity without a real reason.


A Simple Way to Think About It


What Changed For Me

I kept running into this assumption that "real-time = WebSockets." But real-time just means the user sees updates quickly. How you deliver those updates is a separate question.

SSE and polling aren't the beginner options you graduate away from. They're legitimate tools with real strengths. Picking the right one for the job - instead of defaulting to the most complex option - is actually what good system design looks like.

Next time a feature says "real-time," ask whether the client really needs to talk back. The answer will point you to the right tool.