<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: suraj gorai</title>
    <description>The latest articles on DEV Community by suraj gorai (@surajgoraicse).</description>
    <link>https://dev.to/surajgoraicse</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1626816%2Fe2e03114-1ba6-4163-a56a-a3a3640e8a09.jpg</url>
      <title>DEV Community: suraj gorai</title>
      <link>https://dev.to/surajgoraicse</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/surajgoraicse"/>
    <language>en</language>
    <item>
      <title>How Go and NodeJs handles 10000 concurrent request ?</title>
      <dc:creator>suraj gorai</dc:creator>
      <pubDate>Sun, 21 Dec 2025 10:06:09 +0000</pubDate>
      <link>https://dev.to/surajgoraicse/how-go-and-nodejs-handles-10000-concurrent-request--1b67</link>
      <guid>https://dev.to/surajgoraicse/how-go-and-nodejs-handles-10000-concurrent-request--1b67</guid>
      <description>&lt;p&gt;When I was getting deeper into backend engineering, one question kept hitting my mind : What actually happens when a server get a thousand requests at the same time ?&lt;br&gt;
Does the server creates a thousand thread? Does it queues them and handles one by one ? How the server magically handles all those requests ?&lt;/p&gt;

&lt;p&gt;This blog is the result of chasing that curiosity, trying to answer those questions with clear mentals models and examples.&lt;/p&gt;

&lt;h2&gt;
  
  
  Go :
&lt;/h2&gt;

&lt;p&gt;Go creates a new goroutine for every request that comes. A goroutine is a virtual thread. Each goroutine is responsible for handling the request. So to handle 10,000 concurrent request, Go creates 10,000 goroutines and resolves them concurrently.&lt;/p&gt;

&lt;p&gt;Read full Medium Blog Hear -&amp;gt; &lt;a href="https://medium.com/@surajgoraicse/how-nodejs-and-go-handles-10k-concurrent-request-030ceea17207" rel="noopener noreferrer"&gt;How Go and NodeJs handles 10000 concurrent request simultaneously ?&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>node</category>
      <category>backend</category>
      <category>go</category>
    </item>
  </channel>
</rss>
