Limitations of HTTP / 1.1 and some questions I had about it


I am exploring the backend fundamentals and networking these days, while I was exploring the stateless vs stateful protocols, I got to know something interesting that I want to share.
So I knew HTTP is built on top of TCP, I wondered how it all works, because HTTP is stateless and TCP is stateful. So I did some research and here’s how it all works.
HTTP / 1.1
The HTTP / 1.1 is built on top of TCP. In browsers, it has a limitation of 6 max connections. You might wonder if we can only have 6 open connections at max, how do I have multiple web apps and websites open in different tabs?
So the catch is it allows a maximum of 6 connections per domain. That’s what will enable you to use multiple websites in different tabs.
TCP
When we make a request to any website it first establishes a TCP connection with the server and then it sends the data via HTTP requests and response. These connections don’t are not long-living even though they are stateful. They persist for a short amount of time, based on the config you have on your server. It is called Keep Alive Timeout.
This Keep Alive Timeout is how long the connection stays alive after the server sends back a response.
Keep-Alive
By making use of this feature we can handle the Keep Alive Timeout per connection. This can be very useful if a particular API needs frequent access. So if we increase the Keep Alive time, the request will be handled faster because we don’t have to establish a connection again and go through the popular process of 3-way handshake again and again. This reduces our CPU and Memory usage on the server side because creating a new connection costs these resources.
It has some downsides, you can not keep connections open for too long it might slow down your server. So we have to be careful while doing this as an idle connection can block new requests
Below is an example in the Express server for it
const express = require('express');
const http = require('http');
const app = express();
app.get('/api/myblogs', (req, res) => {
res.json({ message: "Here are your blogs!" });
});
// Create an HTTP server with optimized Keep-Alive settings
const server = http.createServer(app);
server.keepAliveTimeout = 60000; // 60 seconds
server.headersTimeout = 65000; // Must be slightly higher than keepAliveTimeout
server.listen(3000, () => {
console.log('Server running on port 3000');
});
Note: Reference actual networking documentation and books, I have just shared my learnings and understanding of it. If you feel I missed something or anything is wrong, post it in the comments.
Subscribe to my newsletter
Read articles from GuruGen directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by

GuruGen
GuruGen
Hi, I'm Vikrant, a passionate software developer with a strong belief in the power of teamwork, empathy, and getting things done. With a background in building scalable and efficient backend systems, I've had the privilege of working with a range of technologies that excite me - from Express.js, Flask, and Django to React, PostGres, and MongoDB Atlas. My experience with Azure has given me a solid understanding of cloud infrastructure, and I've had a blast building and deploying applications that make a real impact. But what really gets me going is exploring the frontiers of AI and machine learning. I've had the opportunity to work on some amazing projects, including building advanced RAG applications, fine-tuning models like Phi2 on custom data, and even dabbling in web3 and Ethereum. For me, it's not just about writing code - it's about understanding the people and problems I'm trying to solve. I believe that empathy is the unsung hero of software development, and I strive to bring a human touch to everything I do. Whether it's collaborating with colleagues, communicating with clients, or simply trying to make sense of complex technical concepts, I'm always looking for ways to make technology more accessible and more meaningful. If you're looking for a team player who is passionate about building innovative solutions, let's connect! I'm always up for a chat about the latest tech trends, or just about life in general.