Tag: #websockets
-
WebSockets at Scale: Real-Time Architectures with NestJS and Redis Pub/Sub
Introduction In today’s fast-moving digital world, real-time interactivity is no longer optional—it’s expected. Examples include live chat, financial dashboards, collaborative tools, and multiplayer games. Users demand instant updates and seamless communication. WebSockets enable this by maintaining a persistent, full-duplex connection between client and server, enabling low-latency communication. However, building real-time features is just the start.…
-
WebSockets With NestJS & Redis
This blog dives into how to build a basic real-time service using WebSockets and Redis Pub/Sub in NestJS and how the right patterns can simplify your infrastructure and codebase.