[progress Communities] [progress Openedge Abl] Forum Post: Re: Performance Overhead When...

  • Thread starter Thread starter Brian K. Maher
  • Start date Start date
Status
Not open for further replies.
B

Brian K. Maher

Guest
David, Consider using BUFFER-COPY instead of ASSIGN or multiple assignments if possible. Also, remember that the ABL is not an optimizing compiler so anything that happens in a loop will be evaluated each time. For example... do i = 1 to num-entries(some_big_list): end. better would be: define variable iEntries as integer no-undo. assign iEntries = num-entries(some_big_list). do i = 1 to iEntries: end. Brian

Continue reading...
 
Status
Not open for further replies.
Back
Top