Tagged Questions
Lazy loading is a design pattern commonly used in computer programming to defer initialization of an object until the point at which it is needed.
35
votes
1answer
21k views
JQuery to load Javascript file dynamically
I have a very large javascript file I would like to load only if the user clicks on a certain button. I am using jQuery as my framework. Is there a built-in method or plugin that will help me do ...
28
votes
8answers
11k views
Why is hibernate open session in view considered a bad practice?
And what kind of alternative strategies do you use for avoiding LazyLoadExceptions?
I do understand that open session in view has issues with:
Layered applications running in different jvm's
...
21
votes
4answers
3k views
Repository Pattern: how to Lazy Load? or, Should I split this Aggregate?
I have a domain model that has the concept of an Editor and a Project.
An Editor owns a number of Projects, and a Project has not only an Editor owner, but also a number of Editor members. ...
19
votes
7answers
851 views
Asynchronously Lazy-Loading Navigation Properties of detached Self-Tracking Entities through a WCF service?
I have a WCF client which passes Self-Tracking Entities to a WPF application built with MVVM. The application itself has a dynamic interface. Users can select which objects they want visible in their ...
18
votes
1answer
5k views
Converting Hibernate proxy to real object
During Hibernate session I am loading some objects and some of them are loaded as proxies due to lazy loading. It's all OK and I don't want to turn lazy loading off.
But later I need to send some of ...
18
votes
5answers
15k views
Lazy load images in UITableViewCell
I have some 50 custom cells in my UITableView. I want to display an image and a label in the cells where I get the images from URLs.
I want to do a lazy load of images so the UI does not freeze up ...
16
votes
3answers
2k views
Hibernate lazy-load application design
I tend to use Hibernate in combination with Spring framework and it's declarative transaction demarcation capabilities (e.g., @Transactional).
As we all known, hibernate tries to be as non-invasive ...
16
votes
4answers
487 views
Lazy loaded list view in GTK#
I'm looking to display a large dataset via a list view in GTK# and performance is an issue here. I'm currently using a TreeView backed with a ListStore, but adding all my data to the ListStore takes ...
15
votes
5answers
450 views
Is there any way to detect when a CSS file has been fully loaded?
I've been testing a lot of lazy-loaders for JavaScript and CSS that insert <script> and <link> tags to load files. However the problem is, that <link> tags don't fire onload so it's ...
14
votes
2answers
3k views
NHibernate session management and lazy loading
I am having a heck of a time trying to figure out my session management woes in NHibernate. I am assuming that a lot of my trouble is due to lack of knowledge of IoC and AOP concepts; at least that is ...
13
votes
3answers
3k views
How to load images dynamically (or lazily) when users scrolls it into view
I've noticed this in numerous "modern" websites (e.g. facebook and google image search) where the images load only when user scrolls down the page enough to bring them inside the visible viewport ...
13
votes
11answers
2k views
Thread-safe cache of one object in java
let's say we have a CountryList object in our application that should return the list of countries. The loading of countries is a heavy operation, so the list should be cached.
Additional ...
13
votes
9answers
31k views
What is lazy loading in Hibernate?
What is lazy loading in Java? I don't understand the process. Can anybody help me to understand the process of lazy loading?
12
votes
7answers
513 views
Cached property vs Lazy<T>
In .NET 4 the following snippet with a cached property can also be written using the System.Lazy<T> class. I measured the performance of both approaches and it's pretty much the same. Is there ...
12
votes
6answers
846 views
C++ const getter method with lazy initialization
What is the proper way to implement a getter method for a lazily-initialized member variable and maintain const-correctness? That is, I would like to have my getter method be const, because after the ...
11
votes
2answers
12k views
jQuery Infinite Scrolling/Lazy Loading
I'm currently redesigning my website and have been looking into using JavaScript and jQuery. Here is what I have so far: http://www.tedwinder.co.uk/gallery2/.
My vision is to have all of the photos ...
11
votes
1answer
3k views
Lazy loading not working for many-to-one relationship when mapping to a non-key field using property-ref
I have a legacy database that I am mapping using NHibernate. The objects of concern are an Account and a list of Notification objects. The objects look like:
public class Notification
{
public ...
10
votes
2answers
256 views
Autoloading classes in Ruby without its `autoload`
I love the autoload functionality of Ruby; however, it's going away in future versions of Ruby since it was never thread-safe.
So right now I would like to pretend it's already gone and write my code ...
10
votes
7answers
242 views
How to enforce the use of a method's return value in C#?
I have a piece of software written with fluent syntax. The method chain has a definitive "ending", before which nothing useful is actually done in the code (think NBuilder, or Linq-to-SQL's query ...
10
votes
5answers
700 views
Lazy<T> implementation and .NET generics
I was looking for ways to do lazy initialization and found Lazy<T> which is included in .NET 4.
I was thinking of rolling my own implementation of Lazy<T> for .NET 3.5 (with a simpler ...
10
votes
1answer
975 views
LazyList<T> vs System.Lazy<List<T>> in ASP.NET MVC 2?
In Rob Conery's Storefront series, Rob makes extensive use of the LazyList<..> construct to pull data from IQueryables.
How does this differ from the System.Lazy<...> construct now ...
10
votes
1answer
2k views
Paging over a lazy-loaded collection with NHibernate
I read this article where Ayende states NHibernate can (compared to EF 4):
Collection with lazy=”extra” – Lazy extra means that NHibernate adapts to
the operations that you might run on
top ...
9
votes
2answers
1k views
Disable all lazy loading or force eager loading for a LINQ context
I have a document generator which contains queries for about 200 items at the moment but will likely be upwards of 500 when complete. I've recently noticed that some of the mappings denote lazy ...
9
votes
5answers
9k views
ASP.Net Entity Framework, objectcontext error
I'm building a 4 layered ASP.Net web application.
The layers are:
Data Layer
Entity Layer
Business Layer
UI Layer
The entity layer has my data model classes and is built from my entity data model ...
9
votes
3answers
372 views
Approaches for generic, compile-time safe lazy-load methods
Suppose I have created a wrapper class like the following:
public class Foo : IFoo
{
private readonly IFoo innerFoo;
public Foo(IFoo innerFoo)
{
this.innerFoo = innerFoo;
}
...
9
votes
4answers
448 views
Why it's not a good idea to pass entities as Models in MVC?
We're developing a pretty large application with MVC 2 RC2 and we've received some feedback on the way we're using the Entity Framework's Lazy Loading.
We're just getting the entities in the ...
9
votes
3answers
4k views
Why not to use Spring's OpenEntityManagerInViewFilter
While a lot of posts have been written on the subject of Spring's OpenSession/EntityManagerInViewFilter, I couldn't find any that mentions its flaws. From what I understand, and assuming a typical ...
9
votes
7answers
937 views
Is a lock required with a lazy initialization on a deeply immutable type?
If I have a deeply immutable type (all members are readonly and if they are reference type members, then they also refer to objects that are deeply immutable).
I would like to implement a lazy ...
9
votes
6answers
2k views
Lazy loading - what's the best approach?
I have seen numerous examples of lazy loading - what's your choice?
Given a model class for example:
public class Person
{
private IList<Child> _children;
public IList<Child> ...
8
votes
3answers
130 views
Lazy data-flow (spreadsheet like) properties with dependencies in Python
My problem is the following: I have some python classes that have properties that are derived from other properties; and those should be cached once they are calculated, and the cached results should ...
8
votes
4answers
217 views
How does Flash Player load the main SWF file?
UPDATE:
It seems that everyone didn't read my question thoroughly, all answers suggest me preloading or using external assets. So anyone willing to answer, please take notice to bold questions in ...
8
votes
1answer
497 views
Hibernate Envers: Initializing Envers Proxies
In Hibernate Envers, all related collections of an entity are loaded lazy, regardless of what fetch type is set. So when auditquerying for entity that has a collection of other entities (both audited, ...
8
votes
3answers
593 views
How to avoid blocking EDT with JPA lazy loading in Swing desktop apps
I'm struggling with real-world use of JPA (Hibernate, EclipseLink, etc) in a Swing desktop application.
JPA seems like a great idea, but relies on lazy loading for efficiency. Lazy loading requires ...
8
votes
2answers
488 views
How do I only load an image when the user scrolls to it
Many sites appear to only download images or generate parts of the document (eg for reviews) when the user scrolls far enough down the page to actually see them.
This obviously will give you faster ...
8
votes
5answers
21k views
Hibernate/Spring: failed to lazily initialize - no session or session was closed
For an answer scroll down to the end of this...
The basic problem is the same as asked multiple time. I have a simple program with two POJOs Event and User - where a user can have multiple events.
...
8
votes
3answers
3k views
Post-loading : check if an image is in the browser cache
Short version question :
Is there navigator.mozIsLocallyAvailable equivalent function that works on all browsers, or an alternative?
Long version :)
Hi,
Here is my situation :
I want to implement an ...
8
votes
2answers
3k views
Lazy/Eager loading strategies in remoting cases (JPA)
I'm running into LazyLoading exceptions like the most people who try remoting with an ORM.
In most cases switching to eager fetching solves the problem (Lazy Loading / Non atomic queries / Thread ...
8
votes
9answers
6k views
What is Lazy Loading?
What is Lazy Loading?
[Edit after reading a few answers]
Why do people use this term so often?
Say you just use a ASP/ADO recordset and load it with data or ADO.NET Datasource for a gridview.
I ...
7
votes
0answers
177 views
Consensus on lazy loading Bitmaps in an Adapter (emphasis on Bitmap.recycle()) [closed]
I see a truckload of suggestions for this, but none (that I've found) take all factors into account, the factors being:
Asynchronous downloading, without duplication (of downloaders and ...
7
votes
1answer
221 views
Non-blocking lazy-loaded properties in model of MVVM
I'm fairly new to MVVM, so please excuse me if this problem has a well-known solution.
We are building a bunch of model classes which have some core properties that are loaded up-front, as well as ...
7
votes
8answers
287 views
Lazy loading class methods in PHP
I have a class with a few rather large methods. In it's basic and most common state most of the functionality is not required though, so I was wondering if there is a way of lazy loading just parts of ...
7
votes
3answers
750 views
How to lazy load a many-to-many collection in hibernate?
I can lazy load one-to-many and many-to-one associations but I can't with the many-to-many associations.
We have a city in wich we have merchants wich have adresses.
Merchants can have multiple ...
7
votes
2answers
776 views
Lazy<T>: “The function evaluation requires all threads to run”
I have a static class with some static properties. I initialized all of them in a static constructor, but then realized that it is wasteful and I should lazy-load each property when needed. So I ...
7
votes
4answers
3k views
CGImage/UIImage lazily loading on UI thread causes stutter
My program displays a horizontal scrolling surface tiled with UIImageViews from left to right. Code runs on the UI thread to ensure that newly-visible UIImageViews have a freshly loaded UIImage ...
7
votes
6answers
5k views
In Spring with jpa/hibernate, how do I keep a session open to avoid lazy initialization exceptions?
I currently mark collections in entity beans as eager to avoid getting a lazy initialization exception when I try to access the collection properties after loading the bean with the EntityManager.
If ...
6
votes
3answers
107 views
Why is this double-checked lock implemented with a separate wrapper class?
When I was reading Wikipedias's article about Double Checked Locking idiom, I'm confused about it's implementation:
public class FinalWrapper<T> {
public final T value;
public ...
6
votes
2answers
162 views
Should this C# code be refactored to use the Lazy<T> keyword instead?
I have the following code which could be called via multiple web-requests at the same second. As such, I don't want the second+ request hitting the database, but waiting until the first one does.
...
6
votes
1answer
2k views
lazy load google maps api v3 jQuery callback
I do lazy loading of the google maps api v3 javascript
The documentation says about putting as a callback parameter in the url the name of the function, which will be executed, when the script has ...
6
votes
3answers
267 views
Does Queryability and Lazy Loading in C# blur the lines of Data Access vs Business Logic?
I am experiencing a mid-career philosophical architectural crisis. I see the very clear lines between what is considered client code (UI, Web Services, MVC, MVP, etc) and the Service Layer. The ...
6
votes
4answers
938 views
Implementation of Lazy<T> for .NET 3.5
.NET 4.0 has a nice utility class called System.Lazy that does lazy object initialization. I would like to use this class for a 3.5 project. One time I saw an implementation somewhere in a ...