-
Could you please provide some details on LazyLoading? |
Beta Was this translation helpful? Give feedback.
Answered by
JesperGr
Jun 14, 2022
Replies: 1 comment 2 replies
-
Lazy loading can be used if you only need to retrieve data for a few time steps, but for all the network. In the cases where time series for the entire simulation is requested at only a few locations, lazy loading is a bad idea. Use filtering instead. This lazy loading is mostly used (and designed for use) by the engine when reading the state from a result file (hot-starting on a file) |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
hawklorry
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Lazy loading can be used if you only need to retrieve data for a few time steps, but for all the network.
In the cases where time series for the entire simulation is requested at only a few locations, lazy loading is a bad idea. Use filtering instead.
This lazy loading is mostly used (and designed for use) by the engine when reading the state from a result file (hot-starting on a file)