On 05/08/10 00:24, Aramaies wrote: > Good Day, > > > > We are in the process of upgrading from Universe 9.6 to 10.3, and we have > noticed that the system performance is degraded when we use an I-Type > dictionary with subroutine calls, and the item is also an alternate key. > > It seems that the report run about 4 or 5 times slower. > > Is there someone else who has encountered similar issues? > > Any ideas? > What are you doing in your i-type? Optimisation of your code can make quite a difference.
The more data that your i-type needs, that you can feed in via arguments rather than (re)read from file, that's saving reads. If you need to open files, cache them in named common because that USED to be a MAJOR performance killer (much less so nowadays I believe, but still...) Look at your code. The reference to an alternate key makes me suspect you are suffering open/read penalties that you can hopefully optimise away to a large extent. Cheers, Wol _______________________________________________ U2-Users mailing list [email protected] http://listserver.u2ug.org/mailman/listinfo/u2-users
