Completed
Pinned fields
Click on the next to a field label to start pinning.
Details
Assignee
Michael SaechangMichael Saechang(Deactivated)Reporter
Minhchau DangMinhchau DangBranch Version/s
6.1.xBackported to Branch
CommittedGit Pull Request
Components
Fix versions
Affects versions
Priority
Medium
Details
Details
Assignee
Michael Saechang
Michael Saechang(Deactivated)Reporter
Minhchau Dang
Minhchau DangBranch Version/s
6.1.x
Backported to Branch
Committed
Git Pull Request
Components
Fix versions
Affects versions
Priority
Zendesk Support
Zendesk Support
Zendesk Support
Created July 20, 2012 at 8:31 AM
Updated June 24, 2023 at 3:51 PM
Resolved August 13, 2012 at 10:40 AM
Currently, PermissionLocalService.checkPermissions() will call PermissionLocalService.checkPermission() once for every resource. During each call to PermissionLocalService.checkPermission(), a lot of data will be re-retrieved from a thread local cache (with a low probability), MultiVMPool (with a moderate probability) or the database (in the case that the permissions finder/entity caches is not optimized for the amount of data handled in the upgrade, which will be true in many cases).
In order to retrieve the resource name, the ResourceCode will be accessed twice for every resource
In order to retrieve the default permissions, the local map in ResourceActionsUtil will be accessed for every resource for both guest and site permission defaults
In order to retrieve role ids, a list of roles with that name will be accessed three times for every resource
In the last case, PermissionLocalService.addRolePermissions() iterates over all roles with the same name. However, a permissionId is only applicable to one companyId, not all companyIds; it is not necessary to add the permission to the roleIds from other companies. Therefore, the logic is incorrect in addition to being wasteful from a cache access perspective.
The logic can be simplified so that rather than accessing the data once for every resource, we instead retrieve it once for every ResourceCode.