Skip to main content
Filter by
Sorted by
Tagged with
1 vote
3 answers
160 views

I'm working on a C# application where I need to read a very large text file and convert its contents into a DataTable. However, I don't always need all the rows—so I want to avoid loading the entire ...
Mohammad's user avatar
306 votes
26 answers
746k views

I get the following exception: Exception in thread "main" org.hibernate.LazyInitializationException: could not initialize proxy - no Session at org.hibernate.proxy.AbstractLazyInitializer....
Blerta Dhimitri's user avatar
132 votes
17 answers
204k views

I am trying to implement lazy loading but getting error as following ** ERROR Error: Uncaught (in promise): Error: BrowserModule has already been loaded. If you need access to common directives such ...
Er Sushil's user avatar
  • 1,481
1 vote
2 answers
107 views

I'm in bash (version 5.2.37, in Arch-Linux), trying to make my experience a bit better, so I activated tab completions. I have the following code in .bashrc: [ -n "$(find /etc/bash_completion.d -...
Carlos González's user avatar
0 votes
1 answer
213 views

In an "offline-first" app (which optimistically updates local state and gracefully handles errors by rolling back local state changes, for example), some features may still require internet ...
Audiopolis's user avatar
0 votes
1 answer
103 views

Description: I'm using the infinite_scroll_pagination: ^5.1.0 package in combination with BLoC to implement infinite scrolling in my Flutter app. However, I’m encountering unexpected behavior related ...
Jay Parmar's user avatar
0 votes
0 answers
61 views

Problem Description I'm building a Flutter app that needs to display a large dataset (100-3000 rows, ~30 fields each) in a ListView with the following requirements: Local database as Single Source of ...
Abdulaziz Abduqodirov's user avatar
0 votes
1 answer
1k views

I’m working on a project where I need to implement infinite scrolling in an Ant Design Table component for displaying large datasets. I’m fetching the data from a Laravel backend, and I want to ...
Shiba Y.'s user avatar
196 votes
12 answers
130k views

During a 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 ...
Andrey Minogin's user avatar
263 votes
12 answers
170k views

In this application we are developing, we noticed that a view was particularly slow. I profiled the view and noticed that there was one query executed by hibernate which took 10 seconds even if there ...
KCL's user avatar
  • 6,893
1 vote
3 answers
80 views

I'm trying to implement a lazy loading listview in my Flutter app. Basically when user scrolls to bottom, we fetch more data from the server. Let's say there are totally 100 items and I fetch 10 of ...
Emre Turan's user avatar
39 votes
10 answers
60k views

I am currently trying to update my Website using the new loading="lazy" attribute as shown here: https://web.dev/native-lazy-loading As seen in the video, everything works as expected, but compared ...
Andre Thiele's user avatar
  • 4,309
1 vote
1 answer
474 views

I'm trying to prevent some images that are above the fold from being lazy loaded but I can't access the html of the images. Only the wrappers. Is there any way to access plane HTML of Elementor ...
Joshep95's user avatar
  • 177
212 votes
6 answers
419k views

This may be a really elementry question but whats a nice way to include multiple children entities when writing a query that spans THREE levels (or more)? i.e. I have 4 tables: Company, Employee, ...
Nathan Liu's user avatar
  • 2,235
196 votes
14 answers
295k views

What is lazy loading in Java? I don't understand the process. Can anybody help me to understand the process of lazy loading?
rocker's user avatar
  • 11.6k
1 vote
0 answers
699 views

I'm implementing lazy loading with virtual scrolling in a PrimeVue DataTable. The data should be dynamically fetched from an API as the user scrolls. While the initial data fetch (first 25 accounts) ...
Jakob Wolf-Sebottendorff's user avatar
1 vote
1 answer
418 views

In older versions of Angular, where we used to have module-based applications, it would load a module once and even if you close components that are exported by that module - it wouldn't load that ...
maksonios's user avatar
1 vote
0 answers
94 views

After migrating to Angular 18 and browser-esbuild (and vite) I installed my app to the testserver. The app is no longer able to lazy load all submodules. It ends with After page refresh the lazy ...
Marc Thomann's user avatar
1 vote
1 answer
180 views

I’m working on a Spring Batch job with parallel chunk processing. The problem I’m facing is a LazyInitializationException due to nested lazy-loaded collections in my JPA entities. I’m using ...
Oboe's user avatar
  • 2,743
0 votes
0 answers
66 views

I am using React-Bootstrap in my React app, and it was working fine until I implemented lazy loading for my components using React.lazy() and Suspense. After enabling lazy loading, React-Bootstrap ...
Basant Namdev's user avatar
103 votes
9 answers
120k views

Is there any way to disable lazy loading for specific query on Entity Framework 6? I want to use it regularly, but sometimes I want to disable it. I'm using virtual properties to lazy load them.
Marco Alves's user avatar
  • 2,886
-2 votes
2 answers
494 views

I have created a lodable component, const componentsMap = new Map(); const useCachedLazy = (importFunc, namedExport) => { if (!componentsMap.has(importFunc)) { const LazyComponent = lazy(() =&...
PoorProgrammer's user avatar
2 votes
1 answer
1k views

Could somebody explain, what happens, if all images, even those above the fold, have attribute loading="lazy"? Do browsers have any logic to decide to not lazyload images, which are ...
Evgeniy's user avatar
  • 2,657
0 votes
4 answers
1k views

I'm making a Single Page Application in React and i'm using the "lazy" function and the "Suspense" Component to import components only when is needed. But i have an strange error ...
MrDadox's user avatar
1 vote
0 answers
1k views

I use Neovim with Lazy.nvim and I want to use GitHub Copilot only for very specific cases. For me, is better to have it unabled than enabled by default, and just activate it when I need to use it (...
David Pedroza Segoviano's user avatar

1
2 3 4 5
121