Adjust the UDR cache
The default number of SPL routines, UDRs, and other user-defined definitions in the UDR cache is 127. You can change the number of entries with the PC_POOLSIZE configuration parameter.
The database server uses a hashing algorithm to store and locate
SPL routines in the UDR cache. You can modify the number of buckets in
the UDR cache with the PC_HASHSIZE configuration parameter. For example,
if the value of the PC_POOLSIZE configuration parameter is 100
and
the value of the PC_HASHSIZE configuration parameter is 10
,
each bucket can have up to 10 SPL routines and UDRs.
Too many buckets cause the database server to move out cached SPL routines when the bucket fills. Too few buckets increase the number of SPL routines in a bucket, and the database server must search though the SPL routines in a bucket to determine if the SPL routine that it needs is there.
When the number of entries in a bucket reaches 75 percent, the database server removes the least recently used SPL routines from the bucket (and hence from the UDR cache) until the number of SPL routines in the bucket is 50 percent of the maximum SPL routines in the bucket.
Monitor the UDR cache by running the onstat -g prc command. If the numbers in the hits fields are not evenly distributed among buckets, increase the value of the PC_HASHSIZE configuration parameter. Adjust the number of buckets to have the least number of high hit entries per bucket.