Freaking loving this channel 🔥 we'll be waiting from now for the new chapter 😂
@TechPrimers Жыл бұрын
🫡
@saurabh9446 Жыл бұрын
@@TechPrimers any chances of creating nodejs/golang examples for the theory being discussed
@vivi-dj7oo Жыл бұрын
Thank you for this video! The explanation was very clear and helpful. :)
@TechPrimers Жыл бұрын
Glad it was helpful!
@pedronunes9043 Жыл бұрын
Thank you! This was very clarifying.
@DebopriyoBasu8 ай бұрын
Amazing explanation! The examples really helped me reinforce my understanding.
@hkkabir2024 Жыл бұрын
what is the best way for implementing notification for huge amount of data? i feel very comfortable with long pooling . plz give me your opinion
@ghoulbond Жыл бұрын
In my opinion, server-sent event would be the ideal choice for this scenario, I recently used server-sent events in one of project for live notifications service, alongside this you can make use of RabbitMQ or Kafka in the backend for the scalable architecture.
@sergeibatiuk346811 ай бұрын
Is threading on a server going to be an issue with long polling / server sent events if the server is non-blocking, like webflux or scala http4s?
@ranuchir9 ай бұрын
How and where is the user session maintained for SSE and Web sockets? Please share
@sertunc-k5o Жыл бұрын
under hige load which should we use ? websocket vs long polling ? thank you
@girishanker379610 ай бұрын
Long polling🤔 coz we can't horizontally scale web sockets since they are stateful and also long polling provides enough delay at the server side.
@J1MKAKA1N9 ай бұрын
Long polling nowadays is almost always a bad idea. WebSockets are lighweight, fast, async, scalable, widespread and don't spam a server with requests. SSE could be useful for some specific cases, but it's hard to scale.
@TheKennyWorld Жыл бұрын
Very detailed and clear explanation
@TechPrimers Жыл бұрын
Glad it was helpful!
@ayyanarjayabalan Жыл бұрын
Love it. Waiting for implementation of SSE like zerodha trading application.
@TechPrimers Жыл бұрын
Done Ayyanar. Check my latest video
@EjazKhan-tr6vt8 ай бұрын
Too good, easy-peasy👍
@SharmilaD-y2g Жыл бұрын
Useful session, please post session on resiliency
@連文瑞-o5n7 ай бұрын
Awesome content
@rathnakumar731 Жыл бұрын
Mass
@JaNaMSoNi Жыл бұрын
3 minutes late
@TechPrimers Жыл бұрын
oops. you can see the chapter timestamps now and navigate
@EldenNoob-yv9ke8 ай бұрын
useless and incorrect video. 1. No info on TCP connection like is the same connection is reused. 2. SSE is used for communicating textual data and not binary data like video streaming.