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.

learn more… | top users | synonyms

2
votes
3answers
35 views

Setup dictionary lazily

Let's say I have this dictionary in python, defined at the module level (mysettings.py): settings = { 'expensive1' : expensive_to_compute(1), 'expensive2' : expensive_to_compute(2), ... } ...
0
votes
0answers
9 views

Entity Framework 5 unnecessary loading of records

I'm using Entity Framework 5 (C#) and I'm finding that unnecessary loading of records in the following case is causing performance issues. I have created a messaging application, where messages are ...
0
votes
0answers
29 views

How to Lazy Load a static library?

I am working on a project that involves card swiping on different types of swipers from different vendors. These swipers have their own static libraries. I had no issues in integrating these libraries ...
0
votes
1answer
33 views

UITableViewCell change Image without calling Reload (LazyLoading)

I have looked at some sample LazyLoading to load the image whenever the cells are visible and the loading is complete. I noticed they do not call ReloadData How do I change the images without having ...
0
votes
1answer
16 views

UITableVIew reloadSection and reloadRowsAtINdexPaths Weird Animation

I am doing lazy loading for my UITableView so I am trying to reload individual rows as the images get updated. I am however running into a strange problem. When I call, [self.bubbleTableView ...
0
votes
0answers
8 views

Force loading of extra-lazy assoc in Doctrine2 for unit testing (no DQL)

I'm running into a small problem with unit testing in Symfony2. I have a few associations marked as extra-lazy, which is fine. However, when testing them, they don't get loaded (of course), which ...
0
votes
0answers
15 views

When using lazy dataTable another component does not get updated / 2nd component data is one request behind

I have a PrimeFaces p:dataTable and enabled lazy loading by implementing a LazyDataModel. The dataTable holds search results, so when doing a search request the search service only retrieves the ...
1
vote
1answer
34 views

How to use lazy with instance variable

given the code below public class classA { int someid ; public classA( int x ) { someid = x; } Lazy<myType> lazymt1 = new Lazy<myType>( return ...
1
vote
1answer
19 views

Lazy Loading User Image UITableView - Updating the Image in Request Block not Working

So I am trying to lazyload a user pictures for a custom UITableView (BubbleTableView) NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url]; [request ...
0
votes
0answers
17 views

core data lazy load setContent set content

I have a core data situation, and display performance is a problem. I'll use the department-employee case with some additions. company has departments (1-many) department has employees (1-many) ...
0
votes
1answer
32 views

Android Lazy loading ViewPager

I'm using a ViewPager with circle indicators for showing pictures. I want to use the url of some images instead. Actually lazy load some images inside ViewPager with circle indicators. I have to ...
0
votes
0answers
10 views

SLRequest to Pull FB Friends

Good day, Is there a way to implement lazy loading when pulling FB friends via SLRequest? I did the code this way but the pull is so agonizingly slow. Please help: MBProgressHUD *hud = ...
0
votes
0answers
8 views

SmoothDivScroll adding lazy loading within ajax

I use smoothdivscroll plugin slider. I want to make lazy loading when showing images in order to this my application did not long on waiting the images. Any suggest on making lazy loading using ajax. ...
0
votes
2answers
59 views

Lazy loading in UITableView crashes app

I am using UITableView with CustomCell. CustomCell contains UIImageView and 2 UILabel. In UIImageView I want to load image from URL and I want to save in my Document Directory. Here is my code that I ...
-1
votes
1answer
29 views

Lazy loading with wordpress not working in contents added via ajax [closed]

I am making the pagination working with infinite scroll. But lazy loading is not working in these contents. Please see this live here. I am using following ajax function $.ajax({ ...
2
votes
1answer
23 views

Lazy loading variables in templates

Currently I am doing it like this: function load_template($script, $args){ extract($args); require __DIR__ . '/templates/' . $script; } In my controller code: // if home page was requested ...
0
votes
1answer
38 views

Change image path src to data-src on Drupal 7

I want to use LazyLoad plugin. Searched modules about this jQuery plugin but don't work for me. Moreover, will use many options. So, first rule: Latest version of Lazy Load is not a drop in ...
0
votes
1answer
57 views

jquery lazy loading plugin

i am creating a portal using large number of images. For smoothness i add lazy loading plugin to this portal This is the plugin http://www.appelsiini.net/projects/lazyload I used this code for ...
1
vote
2answers
30 views

Uncaught Reference Error: function is not defined

i am using an ajax function to read some contents. Also i want to impliment lazy loading in this content my code $(document).ready(function () { var getparam = '<?php echo ...
0
votes
0answers
17 views

FlushAction and Lazy attribute

I have a Solution 'MySolution' in VS. In one project 'Domain' I have defined de following classes: public class CarBase { public virtual void Foo(); } public class Car : CarBase { ...
0
votes
2answers
49 views

how to make the images downloading from web fastly?

i'm having array of image urls (say count=10), i have to display the images in NSCollectionView. but the images were took lot of time to display. what is lazy loading? i'm searching for mac osx not ...
1
vote
1answer
28 views

Animating lazy load of ArrayAdapter

Hello I was using animation for an ArrayAdapter. I want to animate a thumbnail when its loaded... However every time any thumbnail of the list is loaded, the animation starts for every items of the ...
1
vote
2answers
49 views

EF 5.0 Database first, POCO types and Lazy Loading

I'm not much of a DB guy and I'm pretty new to EF. I am confused by the erratic behavior of lazy loading on FK relationships. Let's say I have a table Parent and a table Children. Children has a ...
1
vote
3answers
62 views

virtual keyword, Include extension method, lazy loading, eager loading - how does loading related objects actually work

Loading related object in MVC can be pretty confusing. There are lots of terms you need to be aware of and learn if you really want to know what you're doing when writing your entity model classes ...
0
votes
1answer
60 views

Lazy Loading (Image + Text) for Linear Layouts

I am trying to implement an activity shown in the image(Wireframe) uploaded(). There could be n number of such items.(Lazy Loading is expected to be implemented.) Images are ImageButtons and ...
0
votes
0answers
29 views

Override lazy loading in child hbm file

I've an entity "EntityDescription" and another one "EntityChild" and EntityChild inherit from EntityDescription Now in EntityDescription hbm file I've <set name='Attributes' ...
0
votes
0answers
22 views

Lazy load text in grid view using Jquery or some client side function

I have website that contains grid view and has hundreds of pages so it contains pagination. I wanted text to be loaded only for first few pages in grid view. I found loads of site with lazy load for ...
1
vote
2answers
92 views

Lazy loading list box, in a panorama page

I wanted to add a lazy loading list box(load content when swipe) in a panorama page in one of my windows phone 7 applications. I could however do it using a pivot page. I referred this link But this ...
0
votes
0answers
48 views

How to include all underlying navigation properties automatically with entity framework

Scenario: I'd like to add an entity to the database that would have navigation properties and that entity has navigation properties.. and so on. Basically the tables in the database are connected with ...
4
votes
1answer
79 views

Vaadin - Lazy Query Container

I'm doing my project in Vaadin 7. I need to implement a Lazy Query Container for a Treetable. I will get data for the table from a web service. Could someone please show how to use a Lazy Query ...
2
votes
1answer
41 views

In Entity Framework, why isn't lazy loading working for a one-to-zero-or-one navigation property?

Consider Person and Address classes defined as class Person { public int PersonId { get; set; } public virtual Address Address { get; set; } } class Address { public int PersonId { get; set; } ...
0
votes
0answers
26 views

Hazelcast: force map to load

I'm looking for a way to force map initialization. I'm using Spring integration and MapStore implementation and I noticed that before business logic tries to touch a map they are not initialized, i.e. ...
1
vote
2answers
32 views

JPA's FetchType.LAZY doesn't work?

My provider is: org.eclipse.persistence.jpa.PersistenceProvider My Entity code is: @Entity @NamedQueries( { @NamedQuery(name = "Bank.findAll", query = "select o from Bank o") }) @Table(name = ...
0
votes
1answer
43 views

Lazy Loading not working with entities generated using EF5.x DBContext Generator

I think I must be missing something really obvious here. I'm using visual studio 2012, with .Net 4.5 as the project framework. I'm using datbase first to generate a model (update model from database, ...
1
vote
1answer
60 views

Using Ajax lazy load

I created a database where I store all the images' names so that I can retrieve it later on. To retrieve the images' names, I use ajax and bind it with <img> tag: ...
0
votes
0answers
85 views

Horizontally organised dynamic grid with CSS and jQuery

The title could be a bit misleading, but could not find a more fitting title. I'm intensively working with images on a website and loading more than 50 of them really slows things down. I wanted to ...
1
vote
1answer
102 views

The ObjectContext instance has been disposed and can no longer be used for operations that require a connection

I'm building my application using User Controls so I have Main Form and I display User Controls with this code: Modules.CtrlListContractors mo = new Modules.CtrlListContractors(); ...
0
votes
0answers
21 views

Hibernate @Transactional annotation for separate Thread

We have two Java projects, one is a webapp using Spring MVC/Hibernate, and the other is an embedded JAR. The webapp starts a Thread, which performs some code in the embedded JAR. Eventually, the JAR ...
1
vote
0answers
38 views

JPA/Hibernate lazy loading not working properly

I have a question about the intricacies of hibernate lazy loading. I have the following 4 entities ( CV --> certifications, CV--> experiences, CV --> educations ): @Table(name = "CV", schema = ...
0
votes
1answer
34 views

breeze: error on lazy-loading

With the following code: $scope.mandat.entityAspect.loadNavigationProperty("OpenPositions") .fail(function(err){ logger.error(err); }); I'm getting the following error: Error: The 'operator' ...
0
votes
0answers
146 views

Angularjs: lazy versus requirements based loading

I see ways I can lazy load Angularjs from these articles: http://roubenmeschian.com/rubo/?p=40 and http://ify.io/entry/172/lazy-loading-in-angularjs/ In practice I see most use out of more ...
0
votes
0answers
33 views

Implementing lazy-load after fetching data-original

I am trying to implement the lazyload() plugin, but the images that this needs to be applied on get their src from an external script. This is all done after the page is loaded. To start the process, ...
0
votes
1answer
40 views

JPA Hibernate collections not lazily loaded

I have a JPA setup in such a way that if i do not use lazy load, almost the entire database will be loaded. I also use serializing directly on the models so sometimes i need to initialize the proxies. ...
0
votes
1answer
52 views

Performance while downloading images from server to imageview

I am new to android . I was trying to implement an Asnyc tasks which downloads a set of 5 images at a time by parsing a json which s returned from the server. There are is a next button on the ...
0
votes
1answer
47 views

lazy loading no data in datatable

I have a problem with lazy loading. Without lazyloading it is working fine but after lazy loading i get no data. I think there is a problem with my lazy data model creation. edit: What I found is ...
1
vote
1answer
95 views

JPA Hibernate want lazy load to return empty collection

I am using JPA-Hibernate at the moment and want collections to be empty until i call the associated get(). I have been trying for several days now without any success. The reason i want this is ...
0
votes
0answers
20 views

Performance Comparison - Domain Model + Eager Loading or Lazy Loading?

Ive looked in many places online and Martin Fowlers book but I cant seem to find a straight answer about the performance for the Domain Model pattern and Eager Loading vs Lazy Loading. I have used ...
1
vote
1answer
51 views

Firebase lazy loading

Can I make firebase load my data lazily? Let's say my app consists of a tree with a million nodes that the user can collapse, expand and modify. The vast majority of those nodes will stay collapsed ...
0
votes
1answer
22 views

Log Lazy Loading operations

I use Entity Framework 5 with POCO entities and lazy loading proxies. In most cases I eagerly load all entities required for subsequent operations, but in some cases I rely on lazy loading to retrieve ...
4
votes
2answers
104 views

Create lazy IO list from a non-IO list

I have a lazy list of filenames created by find. I'd like to be able to load the metadata of these files lazily too. That means, that if i take 10 elements from metadata, it should only search the ...

1 2 3 4 5 31