1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-01 06:50:26 +02:00

Update index.md (#7070)

Added a brief description of realtime communication, methods of achieving it and a link to a YouTube video showing websockets being used with Go.

---------

Co-authored-by: dsh <daniel.s.holdsworth@gmail.com>
This commit is contained in:
Clinton
2024-09-11 03:56:03 -05:00
committed by GitHub
parent dae737fa02
commit 909b0fa81a

View File

@@ -1 +1,8 @@
# Go realtime communication
## What is real-time communication?
Just as it says in the name, real-time communication is the handling of requests concurrently and efficiently. Whether it is a chat/messaging app, an email service, a game server or any collaborative online project (for example, Excalidraw), there are a few different ways of handling real-time communication, but the most common is through the use of WebSockets. Other options for handling real-time communications include MQTT protocol and server-sent events, among others.
Learn more from the following resources:
- [@video@Golang websocket](https://youtu.be/G8SKhZMqvsE)