Most efficient way to include other attributes verbatim in scripted attributes
Cantor, Scott
cantor.2 at osu.edu
Thu Nov 21 10:11:58 EST 2019
On 11/21/19, 9:51 AM, "users on behalf of Wessel, Keith" <users-bounces at shibboleth.net on behalf of kwessel at illinois.edu> wrote:
> I realize I could just iterate over the user's raw group memberships attribute instead and skip the mapped attribute
> definition, doing if (group.match(/regex/) for each value. So, first question, is the mapped attribute definition more
> efficient than iterating over the group memberships and matching each one against a regex in my script? Or is it
> essentially the same code?
If you really want to know things like that, the metrics support was built to let you install timers around individual connectors to measure the time. I don't think anything else is going to be anything but speculation.
> And second question: if the mapped attribute definition is more efficient, is there a more efficient way in my script to
> take all of the values of entitlementGroups and add them to eduPersonEntitlement? A way, that is, to say here's a
> multi-valued attribute; add all of its values to the list of values output by this script?
This is probably going to turn out to be "because I'm using Rhino instead of the garbage pile Nashorn" but my entitlement script has:
eduPersonEntitlement.getValues().addAll(entitlement.getValues());
"entitlement" here is an attribute from an LDAP connector, so this is the part that echoes all of the directory-based values in my script that adds all the other stuff.
-- Scott
More information about the users
mailing list