Please report new issues athttps://github.com/DOCGroup
Currently the Policy_Set and other internal classes deliver a cached_type which is defined in orbconf.h. All policies that are cached need to implement the _tao_cached_type method (which is hacked into PolicyC.h/cpp. Then the Policy_Set stores an array with all the cached policies that each time is cleared, copied, filled ,etc. With ZIOP added there are around 25 policies that are cached. So the set has each time an array with just a few pointers set. When looking at a real system mostly people will have just a few policies set, looking at the copy/update overhead I think we should change the internals of TAO_Policy_Set to use for example an ACE_Array_Map, this is used internally and maybe converted to a CORBA::PolicyList when needed. This would reduce the amount of code in the core and all the policies a lot and I don't think it will impact performance really, ok, getting a cached policy maybe takes a little bit longer (if you have a lot of policies set at least), but updating that cache also takes time each update