<?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: Inbanithi R</title>
    <description>The latest articles on DEV Community by Inbanithi R (@inbanithi_r_e7a0a825d9aa8).</description>
    <link>https://dev.to/inbanithi_r_e7a0a825d9aa8</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3996006%2F7afb250a-4a5e-46d3-94d4-55d57d18f79a.png</url>
      <title>DEV Community: Inbanithi R</title>
      <link>https://dev.to/inbanithi_r_e7a0a825d9aa8</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/inbanithi_r_e7a0a825d9aa8"/>
    <language>en</language>
    <item>
      <title>Understanding the communication between the server and browser</title>
      <dc:creator>Inbanithi R</dc:creator>
      <pubDate>Mon, 22 Jun 2026 04:45:13 +0000</pubDate>
      <link>https://dev.to/inbanithi_r_e7a0a825d9aa8/understanding-the-communication-between-the-server-and-browser-o1n</link>
      <guid>https://dev.to/inbanithi_r_e7a0a825d9aa8/understanding-the-communication-between-the-server-and-browser-o1n</guid>
      <description>&lt;p&gt;Hello everyone this post is all about what I learned for few days about the system design and web technologies.&lt;/p&gt;

&lt;h2&gt;
  
  
  Isolation:
&lt;/h2&gt;

&lt;p&gt;To get to know about the isolation we need to understand about transactions. Transaction is a multiple query runs as single operation.&lt;br&gt;
If one of the queries fails, then all the queries in that transaction are canceled (Rollback).&lt;/p&gt;

&lt;p&gt;Isolation allows multiple transaction to work simultaneously without interfering with changes made by one transaction.&lt;br&gt;
There are various Isolation levels some includes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Repeatable Read&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Serializable&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Short Polling:
&lt;/h2&gt;

&lt;p&gt;It is a technique were frontend send a request to the backend over fixed time to get the new changes in the data.&lt;br&gt;
&lt;strong&gt;Disadvantage:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Many unnecessary http requests are sent to the server&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Long Polling:
&lt;/h2&gt;

&lt;p&gt;It is a technique were frontend sends a request to the backend and server holds the request and sends back a response when new data arrived.&lt;br&gt;
The request may be closed after timeout.&lt;/p&gt;

&lt;h2&gt;
  
  
  Server Sent Events (SSE):
&lt;/h2&gt;

&lt;p&gt;SSE allows browser to connect to the server, and server will be able to send the data to browser continuously.&lt;br&gt;
It is one way communication (Server to Browser). &lt;/p&gt;

&lt;h2&gt;
  
  
  Web Socket:
&lt;/h2&gt;

&lt;p&gt;It creates a channel between the server and frontend, unlike SSE it allows two-way communication.&lt;br&gt;
Both server and frontend can send messages continuously.&lt;/p&gt;

&lt;p&gt;Thank you for reading, let's learn and contribute together&lt;/p&gt;

</description>
      <category>backend</category>
      <category>database</category>
      <category>systemdesign</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
