Metismetis.hashnode.dev·Aug 27, 2024Debugging Low Cache Hit RatioDisk activity is much slower than reading data from RAM. With today’s performance characteristics, reading from DRAM takes around 100 nanoseconds whereas reading from the physical drive is between 10 microseconds (for SSD) up to 10 milliseconds (for ...DiscussSQL
Davide Bellonecode4it.hashnode.dev·Aug 20, 2024Davide's Code and Architecture Notes - Cache Expiration vs Cache Eviction (and Eviction Policies)Caching is one of the most common techniques used to improve application performance by storing some data, usually coming from external sources, in quick-access storage. Every call to an API, a database, or an external system adds some latency to the...DiscussCode and Architecture notesarchitecture
seungyeonsyim.hashnode.dev·Aug 2, 2024[Error] Gradle 프로젝트 빌드 실패 캐시 문제 해결Spring Initializr로 프로젝트를 생성 다운하고 인텔리제이로 오픈 후 자동 빌드가 진행되다가 오류가 발생했다. 오류 메시지는 'Could not read workspace metadata from ~~' 이었다. FAILURE: Build failed with an exception. A build operation failed. Could not read workspace metadata from C:\Users\<username>...Discussgradle
Ramu Narasingaramunarasinga.hashnode.dev·Jul 28, 2024Cache your fetcher in useSWR with useCallback.I found a way that caches the fetcher in useSWR using useCallback in the Gitroom source code. The above image is from platform-analytics/render.analytics.tsx. Let’s try to understand this code snippet. we’ll explore how to optimize data fetching in ...Discusscache
hai nguyenhainguyen.hashnode.dev·Jul 19, 2024The Importance of Idempotent APIsIdempotence is a concept where clients receive the same response for multiple identical requests. With idempotence, calling endpoints multiple times results in the action happening only once. This is important because it ensures that if a client repe...Discussdistributed system
Ronit Pandaronit.dev·Jul 14, 2024Building the DNS cacheBefore jumping into the code for the cache, let's first breakdown what exactly what we need from the cache class And also how are we going to cater to all those use-cases Requirements set answers to all question names and record types individually t...DiscussBuilding a simple DNS server from scratch with NodeJS and Typescriptcache
CloudGagsblog.cloudgags.in·Jul 13, 2024How to right use maxage, s-maxage, and stale-if-error headers?In today's digital market, when milliseconds can mean the difference between user experience and retention, optimizing content delivery is critical for every website or application. Fast and dependable content delivery around the world is made possib...Discussmax-age
Temitope Ogunleyeogunleye.hashnode.dev·Jul 12, 2024Redis for Beginners (Part 1 of 2)Redis has come a long way; now, it can be placed as your primary database—not just a cache layer. It features added data persistence and replication for durability and availability. Additional JSON support and search modules make it easier to store a...DiscussDatabases
Temitope Ogunleyeogunleye.hashnode.dev·Jul 12, 2024Redis for Beginners (Part 2 of 2)Welcome back to the second part of our Redis for Beginners series. In Part 1, we covered some basic setups of a Redis database and a couple of fundamental commands. In this second part, we will further explore advanced options for commands while deep...DiscussDatabases
Jasai Hansdajasaiblogs.hashnode.dev·Jul 10, 2024Enhancing Your Computer's Efficiency: Understanding Memory ComponentsIn today's digital age, computer efficiency is crucial. While many know about RAM, the roles of caches, buffers, and swap space often go unnoticed. This article explores these memory components and how they ensure your system runs smoothly. Understan...Discussmemory-management