| Author |
Message |
nallapureddy
New User
Joined: 27 Jul 2005 Posts: 18
|
|
|
|
Hi ,
Is there any way through which we can reduce the Rexx program execution time or in other words is there any way to speed up the Rexx Program Execution.
Thanks,
Madhavi |
|
| Back to top |
|
 |
References
|
Posted: Wed Aug 31, 2005 2:02 pm Post subject: Re: improve the Rexx execution |
 |
|
|
 |
MGIndaco
Moderator
Joined: 10 Mar 2005 Posts: 479 Location: Milan, Italy
|
|
|
|
Yes, compile it!
Someone told me a improve of 90 % but in my cases I only reduced the time of program to a six part: 1 hour = 10 minutes.
Is this what you need? |
|
| Back to top |
|
 |
Kevin
Active User
Joined: 25 Aug 2005 Posts: 258
|
|
|
|
- Make sure to run native REXX (use the IRXJCL program, not IKJEFT01). There is more overhead involved with starting and running in a TSO address space instead of an MVS address space.
- Avoid using EXECIO. Avoid any file I/O as much as possible.
- Use UNIT=VIO for small-scale file I/O operations. |
|
| Back to top |
|
 |
|
|