Saumil Hukerikarbit-by-bit.hashnode.dev·an hour agoCaching Basics: Discover Redis, Memcached, and Alternative SolutionsWhat is Caching? In simple terms, Caching is a technique used to store frequently accessed data in a temporary storage location for quick retrieval. By reducing the time needed to fetch data from the original source (e.g., databases, APIs), caching i...software development
Bùi Quâneminelinsights.hashnode.dev·Feb 12, 2025Tổng quan về Caching: Giới thiệuCache đóng vai trò quan trọng trong việc nâng cao hiệu suất hệ thống bằng cách lưu trữ tạm thời dữ liệu thường xuyên truy cập và giảm độ trễ. Hiểu được các loại cache khác nhau là rất quan trọng để tối ưu hóa thiết kế hệ thống và sử dụng tài nguyên. ...System Designcaching
Fady Hemayafady-hemaya.hashnode.dev·Feb 6, 2025Lost in the Cache: The Hidden Forces Slowing Down Your CodeA Tale of Traversals Let’s take a trip back in time to one of your very first data structure tutorials. You’re introduced to the humble 1D array. You solve a few cool problems, and before long, you’re feeling confident navigating its straightforward ...1 like·180 readscpu
Tuanhdotnettuanhnet.hashnode.dev·Jan 30, 2025Integer Caching in Java: How It Works and Why It MattersSource: Integer Caching in Java: How It Works and Why It Matters 1. What is Integer Caching in Java? Integer caching in Java is an optimization technique that improves performance by reusing Integer objects. Rather than creating a new Integer ...Java
Mahmoud Nawwarnabeghnwwar.hashnode.dev·Jan 25, 2025Hybrid Cache Strategy in Spring Boot: A Guide to Redisson and Caffeine IntegrationIntroduction: The Need for Hybrid Caching In modern application development, performance and scalability are critical factors that determine the success of a system. Caching plays a pivotal role in improving these aspects by reducing database load, m...1 like·60 readsSpring
Panth Patelhow-is-my-backend.whiteloves.in·Jan 25, 2025How Caching Boosted Performance for a Top Air Quality Monitoring CompanyWhat does your usual caching strategy look like? Maybe something like this: async function getUser(userId) { const cacheResult = await cache.get(`USERS:${userId}`); if (cacheResult !== null) return JSON.parse(cacheResult); const result = ...cache
Kshitiz AcharyaforFinal Year Projectsachinthapa.hashnode.dev·Jan 22, 2025Getting Started with Redis: Elevating Your Web ApplicationsWhen building scalable web applications, data management and performance optimization become crucial aspects. One powerful tool that can help achieve this is Redis. In this blog, we'll explore Redis, its advantages, how to integrate it with an Expres...Web Development
Saurav Jhaijagron.hashnode.dev·Jan 12, 2025Exposing Internet Jargons😎Whenever you come across exploring any topics related to internet or something related to tech side of things you hear this jargons like HTTP(Hypertext Transfer Protocol),TCP (Transmission Control Protocol)😱 Today will understand what does this actu...14 likes·108 readsinternet
Strngestrngeblogs.hashnode.dev·Jan 10, 2025Incremental Static Regeneration (ISR): A Deep DiveNext.js offers powerful rendering methods, one of which is Incremental Static Regeneration (ISR). This technique combines the performance benefits of static generation with the flexibility of server-side updates. In this guide, we'll explore how ISR ...Next.js
Ninad Naikninadtech.hashnode.dev·Jan 1, 2025Using Redis as a primary databaseWhen we think of a database, we think about rows, columns, tables, and the relationships between different tables. And we are correct about this. Most applications we use/develop use some sort of relational database, such as PostgreSQL, MySQL, and Ma...35 readsRedis