Aadesh Gavhaneaadeshhh.hashnode.dev·Dec 21, 2024How Instagram Reels Never End!Have you ever found yourself endlessly scrolling through Instagram Reels, wondering how the feed seems infinite? How does Instagram manage to keep the reels coming, with no apparent end? Let me explain the technology behind this addictive feature. Wh...instagram
Shubhamlazyloadingreact.hashnode.dev·Dec 5, 2024Lazy Loading in React: Optimizing App PerformanceImagine you have a large website with many pages, but you don’t want everything to load at once when the user visits your website. It would be slow and frustrating. Lazy loading helps by only loading parts of the website as needed, instead of all at ...lazy loading
Mihai Popescujavainterviewprep.hashnode.dev·Nov 26, 2024Lazy Initialization and Lazy LoadingLazy Initialization and Lazy Loading are techniques used to improve the performance and efficiency of a system by delaying the creation or loading of an object until it is needed. This is particularly useful for resource-intensive objects or tasks th...Java
BestWeb VenturesforBestWeb Ventures's Blogblog.bestwebventures.in·Oct 30, 2024Turbo Frames in Rails: A Complete Guide to Lazy-Loaded ComponentsWhat is Lazy Loading with Turbo Frames? Modern web applications need to be both performant and maintainable. In Rails applications, we often face the challenge of loading multiple independent widgets or components on a single page. While traditional ...176 readsviewcomponent
ayoola lekanoluremi.hashnode.dev·Oct 16, 2024Lazy Loading: A Simple Way to Improve Website Speed and SEOImagine you're at a buffet, and instead of all the food arriving at once (overwhelming your plate), dishes come one at a time, just as you're ready for them. That’s exactly how lazy loading works for web content—serving resources only when needed. I...31 readslazy loading
Yusuf Uysalyusufuysal.hashnode.dev·Oct 8, 2024React Interview Questions (Part 4): Rendering and Performance OptimizationWhat is the virtual DOM, and how does React use it to improve performance? The virtual DOM is a lightweight, in-memory representation of the actual DOM. Instead of updating the entire real DOM every time a change occurs, React creates a new virtual D...React Interview QuestionsReact
Jamie Barlowjamiebarlow-blog.vercel.app·Sep 28, 2024Route-level Suspense with React RouterRoute vs Component-level Suspense - what does our app need? In my previous post, I addressed managing loading states at the component level using React Suspense. But it’s important to note that there are potentially other ways to implement our error ...suspense
Michael Andreuzzamichaelandreuzza.hashnode.dev·Sep 20, 2024How to build a lazy-loading image gallery with Tailwind CSS and JavaScriptIt's finally Friday, and we're back with another tutorial! This time, we're showing you how to create a lazy-loading image gallery using Tailwind CSS and JavaScript. What is lazy-loading? Lazy-loading is a technique to boost performance by delaying t...2 likesJavaScript
Gwon Honggwonhong.hashnode.dev·Sep 19, 2024JPA의 lazy loading과 read committed글의 목적 JPA에서 lazy loading(FetchType.LAZY)을 사용해 N+1 문제를 해결할 수 있다고 한다. 그런데, 격리 레벨이 각각 repeatable read, read committed인 DBMS와 함께 사용 시 어떻게 작동하게 될까? 라는 질문에 대답하고자 한다. 공통 상황 Transaction A와 B가 있다고 하자. A에서 table T의 1~10번째 row를 select했다. 그러나 이 row들은 lazy loadi...repeatable read
Abeer Abdul Ahadabeer.hashnode.dev·Sep 5, 2024Lazy Loading, Suspense and Error Boundary in React ExplainedLazy Loading and Suspense Lazy loading and suspense both could have been separate concepts and thus it seems the explanations should be separate. But in real world apps most of the time you will see they works hand-in-hand. So, this is why I am cover...ReactReact