Difference between revisions of "SYSCLS LAZY LOADING QUERY"
(→MetaProperties) |
|||
(2 intermediate revisions 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. | 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 18: | Line 19: | ||
! width=30% | Name !! width=20% | Data type !! Comment | ! width=30% | Name !! width=20% | 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. | + | | 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. |
+ | Info: as you want this property not to be a filter Criterion you need to configure it as normal property on itts QueryScope (see Details here: [https://wiki.augmensys.com/index.php?title=QUERYSCOPE#Configuration:~:text=query%20item%20exist-,PropertyValues,-for%20the%20QueryInstance].) | ||
|} | |} | ||
+ | [[Category:Classifications|L]] | ||
== See also == | == See also == |
Latest revision as of 11:25, 11 September 2025
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.
Info: as you want this property not to be a filter Criterion you need to configure it as normal property on itts QueryScope (see Details here: [1].) |