You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A resource-instance-list datatype node can have references to N other resource-instances. Once that list gets large, the report slows down considerably.
in the resource-instance-select viewmodel, there's some logic executed for each related resource instance in the tile value:
... which is a problem, because resourceUtils.lookupResourceInstanceData( executes a single search query each time it's called. For tiles where there might be 100 related resources, this is a major performance hit.
The text was updated successfully, but these errors were encountered:
A resource-instance-list datatype node can have references to N other resource-instances. Once that list gets large, the report slows down considerably.
in the resource-instance-select viewmodel, there's some logic executed for each related resource instance in the tile value:
... which is a problem, because
resourceUtils.lookupResourceInstanceData(
executes a single search query each time it's called. For tiles where there might be 100 related resources, this is a major performance hit.The text was updated successfully, but these errors were encountered: