How does the use of 'lazy loading' in an ORM framework like Hibernate affect database performance?

  • Decreases performance by loading all data at once
  • Depends on the specific use case
  • Has no impact on performance
  • Increases performance by loading data on demand
'Lazy loading' in Hibernate increases performance by loading data on demand, reducing the initial load time and resource consumption.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *