Rishi Bakshirishibakshi.hashnode.dev·Oct 8, 2024Page Not Reflecting Updated Data After Mutation? Here's How to Fix ItWhen working with data mutations in Next.js, one common problem is when the page doesn’t update after adding or editing data. Imagine you’re adding a new to-do item via a server action, and even though the data is updated in the database, the changes...10 likesYou Don't Know Next.jsMutations
YASH HINGUyashhingu.hashnode.dev·May 22, 2024Caching Implemented in Express JSImagine you’re running a popular online store. Your store has thousands of products, and each product has its own page with details like its name, price, description, and customer reviews. These details are stored in a database. Now, let’s say a par...1 likecaching
Serhat Bekbek-dev.hashnode.dev·Jan 26, 2024Cache-Busting Background Images in SCSSCaching is a common practice browsers use to store resources locally, enhancing load times. However, it can become problematic when developers make updates to images. Without cache-busting, users might continue to view outdated images from their loca...27 readscache busting
Mayur Patilmayurpatil77.hashnode.dev·Jul 9, 2023What is Asset fingerprinting or ( cache busting ) ? And How it Works in ReactJsAsset fingerprinting in React (or in web development in general) is a technique used to manage cache and ensure that the latest version of an asset is served to users when changes are made. It involves appending a unique identifier (often a hash) to ...1 like·746 readscache
Mathias Nitzscheblog.mathiasnitzsche.de·Dec 21, 2022JS fetch: HTTP Caching instead of LocalStorageWhenever you write plain JS without access to external libs, here is a quick hack on how to cache API responses, which I actually used for my homepage and in another small project. The normal way The JS function fetch makes remote calls really easy. ...288 readsTechJavaScript
Supun Viraj Rathnayakarathnaviraj.hashnode.dev·Oct 28, 2022Cache Busting with Django FileStoragesIntroduction Why Caching In production environments, caching the static contents is a well known practice to improve the user experiences and minimise resource utilisation. In most cases caching for static contents implemented in multiple levels from...103 readsCache Bust