About 52 results
Open links in new tab
  1. data binding - What is Lazy Loading? - Stack Overflow

    The term lazy loading is usually used when talking about object relational mappers. If you use ADO.NET directly you always get eager loading (ie it always loads just what you specify). OR-mappers like …

  2. javascript - How to load images dynamically (or lazily) when users ...

    3 Lazy loading images by attaching listener to scroll events or by making use of setInterval is highly non-performant as each call to getBoundingClientRect () forces the browser to re-layout the entire page …

  3. Native lazy-loading (loading=lazy) not working even with flags enabled

    Sep 2, 2019 · It turns out Chrome is more impatient than Firefox when loading images tagged as lazy. That means it loads the images much earlier, so an image will not be loaded when it appears at the …

  4. sql - Is Lazy Loading really bad? - Stack Overflow

    Mar 22, 2017 · Lazy loading is neither good nor bad. See this for a more lengthy explanation: When should one avoid using NHibernate's lazy-loading feature? In general, lazy loading is a good default …

  5. javascript - how to lazyload anything - Stack Overflow

    Jan 18, 2013 · I know able to lazy load 'image' using some third party jquery library. Is there anyway to lazy load just about anything like <div> element container for example when user scroll to that …

  6. c# - Lazy Loading vs Eager Loading - Stack Overflow

    Jul 12, 2015 · Under what situation could eager loading be more beneficial than lazy loading? Lazy loading in Entity Framework is the default phenomenon that happens for loading and accessing the …

  7. Image lazy loading strategy; what problems may I encounter?

    Sep 2, 2022 · I am looking at disadvantages of lazy-loading images, and I must be hyper-thorough because we are considering implementing loading="lazy" on many/most images in the …

  8. Lazy loading error in R package - Stack Overflow

    Aug 20, 2015 · Are you running a function that has a missing argument "data" somewhere in the package? Try running all examples, functions, demos, etc. individually in the console of a fresh R …

  9. hibernate - Difference between FetchType LAZY and EAGER in Java ...

    Jun 7, 2010 · However, in case of lazy loading strategy, lazy loading marked object does not retrieve data if session is disconnected (after session.close() statement). All that can be made by hibernate …

  10. Lazy loading routes in react router v6 - Stack Overflow

    May 26, 2023 · Lazy loading routes in react router v6 Asked 2 years, 6 months ago Modified 1 year ago Viewed 27k times