Alyssa HollandforAlyssa Holland's Blogalyssahollandblog.hashnode.net·Oct 30, 2020Bust a Cache using webpackCaching in the Browser By default, browsers will cache static assets (i.e. CSS, JS, images) to speed up load times and improve a website's performance. When caching occurs, the browser will keep track of the file that was loaded and, if it has a cop...Discuss·53 likes·1.3K readsProgramming Bytes 😣General Programming
Nwokporo Chukwuebukafor</Chukwuebuka's Blog>codedaddy.hashnode.net·Jan 25, 2023Implementing Cache in Nodejs Using RedisIntroduction Caching is a technique used to speed up the performance of an application by storing frequently accessed data in a temporary location for quick retrieval. To understand more about what caching is all about, check out my article on Introd...Discuss·37 likes·267 readsNODEJSRedis
vishnu chilamakuruforVishnu's Blogvishnu.hashnode.net·Apr 5, 20214 ways to update your cacheCache Caching is a technique to speed up data lookups (data reading). Instead of reading the data directly from its source, which could be a database or another remote system, the data is read directly from a cache on the computer that needs the data...adonis simo and 1 other are discussing this2 people are discussing thisDiscuss·23 likes·2.0K readsSystem DesignSystem Architecture
Arjun NarainforNerd Ninja - Arjun Narainarjunnarain.hashnode.net·Apr 14, 2023Boost Your Golang PerformanceIntroduction How many Gophers does it take to change a light bulb? Just one, but they'll probably write a blog post about it. Hey there, fellow developers! Are you interested in optimizing the performance of your Golang applications? Look no furthe...Discuss·332 readsGo Deepgolang
satish MishraforSatish's blogtechtonics.hashnode.net·Apr 7, 2023LRU Cache implementation using a dictionary and Doubly linked list in PythonA cache is a temporary storage area that stores frequently accessed data so that it can be quickly retrieved when needed. One type of cache is an LRU (Least Recently Used) cache, which is designed to remove the least recently used items when the cach...DiscussPython
gunish jhaforgunish jhagunish.hashnode.net·Mar 26, 2023Redis: A Fast In-Memory Data Store for High-Performance ApplicationsAfter spending some time watching various high-level design videos using Redis as a cache. There was some curiosity in me and I wanted to know more about Redis, if you would also like to know more about the same, this is a brief intro about Redis. Re...Discuss·1 likeRedis
Shiva BhusalforShiva's Blogshivabhusal.hashnode.net·Mar 25, 2023Compressing Cache in RailsCaching is an essential technique used by web applications to improve their performance. Rails, being a popular web framework, has an in-built caching system that allows developers to store the results of expensive computations or database queries in...Discuss·10 likes·32 readsRails
Ashok Sen GurudayalforAshok Gurudayal's blogashokgurudayal.hashnode.net·Mar 19, 2023Spring Boot and CacheA quick intro to caching and applying it to Spring boot applications. Why cache? In Software applications, it is required to provide users with up-to-date information but we could have some scenarios in which the data doesn't change very often. In th...DiscussSpringboot
Rajeev R. Sharmafor👋 <BitsOfCode/>rajeeves.hashnode.net·Mar 17, 2023Boost Your API Performance with Firebase CDN: A Guide to API CachingIf you're using or thinking of using Firebase Cloud Functions or Cloud Run for your website/app backend, I highly recommend looking into caching your API responses. Used appropriately it can improve the speed and performance of your website/app. This...Discuss·60 reads2Articles1Week
Saptarshi BhattacharyaforHigh on Bugs!highonbugs.hashnode.net·Mar 15, 2023Web Basics - Part 4What are Cookies, Local Storage, and Session Storage? Cookies, local storage, and session storage are all ways to store data in a user's browser while they are interacting with a website. Cookies are small text files that are stored on a user's compu...Discusscache
Jacob Hrvoje ZebaforPageUppageup.hashnode.net·Mar 6, 2023Optimizing lookups on small string setsIntroduction Since modern x86 architectures include several caching layers [1], it’s beneficial to understand how to best utilize them when it comes to designing data processing algorithms. Similarly to the ratio of today’s storage access latencies t...Discuss·10 likes·59 readsDatabases
Felix GVforPhilosopher Pingfelixgv.hashnode.net·Feb 26, 2023Existential CacheA common use for a cache is to front a database, in order to improve latency, throughput or both. If the use case depends on these improved characteristics in order to survive, then we say that the cache is existential. In other words, the use case c...Discuss·1 like·316 readscache
Lokesh SanapalliforLokesh Sanapallilokesh1729.hashnode.net·Feb 12, 2023Caching and Different PatternsIntroduction How many heard the phrase "Cache invalidation is the toughest problem in computer science?" I was first introduced to the term "cache" in my computer architecture class in engineering. When I first learned, I did not understand the conce...Discuss·44 readsRedis