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
Updating one of the hierarchical object's fields results in low performance.
When we try to update an hierarchical object The Framework does not check which object's fields are exactly change and attempts to update entire object's hierarchy.
It happens in the SyncDenormolizedValuesService.Sync method which is called from DenormalizeHierarchicalDALListener.Denormalize:
var fromSyncResult = updatedDomainObjects.Select(this.GetSyncResult).ToList();
And in GetSyncResult method the object's children are beeing looked through.
Potential fix: to check if there are no hierarchical changes then there's no need to look through all the structure.
PS Ideally this must be done in v. 18.9.1
The text was updated successfully, but these errors were encountered:
Updating one of the hierarchical object's fields results in low performance.
When we try to update an hierarchical object The Framework does not check which object's fields are exactly change and attempts to update entire object's hierarchy.
It happens in the SyncDenormolizedValuesService.Sync method which is called from DenormalizeHierarchicalDALListener.Denormalize:
var fromSyncResult = updatedDomainObjects.Select(this.GetSyncResult).ToList();
And in GetSyncResult method the object's children are beeing looked through.
Potential fix: to check if there are no hierarchical changes then there's no need to look through all the structure.
PS Ideally this must be done in v. 18.9.1
The text was updated successfully, but these errors were encountered: