Jump to: navigation, search

Difference between revisions of "SYSCLS LAZY LOADING QUERY"


 
(One intermediate revision by the same user not shown)
Line 10: Line 10:
  
 
Classifies an object as [[QUERY#Lazy_loading_query|Lazy loading query]].  
 
Classifies an object as [[QUERY#Lazy_loading_query|Lazy loading query]].  
 +
 +
If a query is classified with this classification the child list is not evaluated every time it is displayed on the client. Network traffic and waiting time can be reduced significant by doing so. If the data does not change frequently or if it is acceptable to let the user decide when to re-evaluate the query we recommend to classify queries lazy whenever it is possible.
  
  
Line 19: Line 21:
 
| MANUAL_EVALUATION_ONLY|| Bool || If false the children are immediately loaded once the user opens the query and it has no local children yet. If true the query only gets updated if the user presses the refresh button or the evaluate query button.
 
| MANUAL_EVALUATION_ONLY|| Bool || If false the children are immediately loaded once the user opens the query and it has no local children yet. If true the query only gets updated if the user presses the refresh button or the evaluate query button.
 
|}
 
|}
 +
 +
 +
== See also ==
 +
* [[QUERY#Lazy_loading_query|Lazy loading query]]
  
 
[[Category:Classifications|L]]
 
[[Category:Classifications|L]]

Latest revision as of 13:45, 26 July 2023

IC CLASSIFICATION.gif Lazy Loading Query
Name SYSCLS_LAZY_LOADING_QUERY
Inheritance SYSCLS_QUERY
Namespace System.Classification.Query
ID {BF689790-1AE2-4014-B592-B4464F3E1F45}
Purpose Classifies queries with a lazy loading/update behavior
Version 4.4.0+

Classifies an object as Lazy loading query.

If a query is classified with this classification the child list is not evaluated every time it is displayed on the client. Network traffic and waiting time can be reduced significant by doing so. If the data does not change frequently or if it is acceptable to let the user decide when to re-evaluate the query we recommend to classify queries lazy whenever it is possible.


MetaProperties

Name Data type Comment
MANUAL_EVALUATION_ONLY Bool If false the children are immediately loaded once the user opens the query and it has no local children yet. If true the query only gets updated if the user presses the refresh button or the evaluate query button.


See also