Saurav Jhafun-with-dns.hashnode.dev·Jan 17, 2025How DNS Hierarchy Works: Exploring Root to ResolutionHave you ever thought ? what happens when you enter a query in that search bar ,Most of us don’t! But behind the scenes, a whole lot happens in the blink of an eye—within just milliseconds. ⚡ From your request to the response, there’s are lots of pro...2 likes·27 readsdns
Affan Shaikhsurabaffanshaikhsurab.hashnode.dev·Jan 17, 2025Redis 💾 and How Caching Makes Things Super Fast! 🚀Introduction to Redis Redis is a key-value pair database that stores data in memory. Because the data is stored in memory, it's great for caching things. Understanding Caching What is a cache, you ask?It's usually frequently used data that is stored...Redis
Anshul Sharmaanshul-sharma.hashnode.dev·Jan 9, 2025Caching Chronicles & CDN Diaries : The Secret Sauce of Server SpeedWelcome Back to The Nerdy Nook !! After exploring my journey in the tech world in my first blog, it’s time to dive into something more server-sational. Let’s talk about the unsung heroes of the internet — Caching & DNS. Without these two, your favori...1 likewebdev
Kunal Katiyarkunalkatiyar.hashnode.dev·Jan 5, 2025Caching in ElasticsearchElasticsearch, known for its powerful full-text search and analytics capabilities, relies heavily on efficient data retrieval. Caching plays a pivotal role in enhancing Elasticsearch's performance by reducing the need to repeatedly compute or fetch d...elasticsearch
Gopal Sharmacaching.hashnode.dev·Jan 4, 2025Step-by-Step Guide to Implementing Redis Caching in ASP.NET CoreCaching is a key technique for boosting the performance and scalability of web applications. In this article, we’ll set up caching in an ASP.NET Core Web API using Redis, a powerful in-memory data store. Prerequisites ASP.NET Core Web API project: E...<meta name="google-site-verification" content="vkSpjsDvgR0p4oZOHrhZNwLu5qqy701qq1iHFK3D4zg" />
nidhinkumarblog.nidhin.dev·Jan 3, 2025Next.js use cache directiveuseCache directive from Next.js designates a component and/or a function to be cached. It can be used at the top of a file to indicate that all exports in the file are cacheable, or inline at the top of a function or component to inform Next.js the r...10 likesNext.js
Arka Infotecharkainfotech.hashnode.dev·Jan 2, 2025Caching in Next.js: Improve Your App’s PerformanceIntroduction In the world of web development, performance is paramount. Users expect fast-loading websites, and delays can lead to loss of engagement or revenue. Caching is a proven method to enhance web performance by storing frequently accessed dat...1 likeNext.js
Nicola Cremaschinihaveyoutriedrestarting.com·Jan 2, 2025Building Atomic Counters with MomentoIn the world of distributed systems, serverless caching is gaining traction for its simplicity and scalability. Momento, a fully managed serverless cache, builds on the core concepts of caching while eliminating infrastructure management. In this thi...38 readsMastering Atomic Counters in Distributed DatabasesAWS
Darshit Anjariadarshitanjaria.hashnode.dev·Dec 28, 2024Caching 101: Unlock High-Performance Backend Systems with Redis and MemcachedIntroduction In the world of high-performance backend systems, speed and efficiency are non-negotiable. Slow response times can drive users away and strain your infrastructure. Fortunately, caching offers a proven solution to these challenges. By tem...caching
Abdul Azeezabdulazeez.hashnode.dev·Dec 27, 2024Starting with NginxWhat is Nginx ? Nginx is pronounced as "Engine X." It does web serving, load balancing, and acts as a reverse proxy. We know web serving is delivering content to clients, just like a server. But what is reverse proxy??? Lets see below. What is Proxy?...General Programming