免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1991 | 回复: 1
打印 上一主题 下一主题

THE INS AND OUTS OF *INLR (From Search400) [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-04-08 10:32 |只看该作者 |倒序浏览
As we all know, the *INLR must be set on in order to shut down a program. That does not necessarily mean the program must terminate. Or, in other words, that the program must close all its files and release itself from memory.

If you have a program that is used often in the call stack, for performance reasons you may wish to keep the program "hot" or active. You may have a central work with style program that most of your users access. Each time a program starts, the system validates security, opens files, and a host of other activities. All of that takes valuable processing time.

If the program returns to the caller with *INLR set on, then the program shuts down and all the files are closed. The next call to the program repeats all the same steps once again to validate security, opening files and everything else. If the same people use the program many times in a day, it could impact the overall performance of your system.

But if the program returns to the caller with *INLR set off, all the files remain open and all subsequent calls to that program are executed much faster. With the files already opened and security validated, there is much less overhead in executing the program.

As with any new technique, there are a few drawbacks. First, if you use an initialized subroutine (*INZSR) in the program, it will only be executed the first time the program is called. That could cause problems, depending on the logic it contains. Next, by leaving the files open, each pointer is right where you left it. Also, the program variables contain the values that were last loaded. In essence you restart the program right where you left off the last time.

Another caveat of the last record indicator is it can be used to end a program without ever executing the mainline. If *INLR is set on during the *INZSR routine, the program ends when the *INZSR subroutine ends and will not execute any of the mainline logic. This is useful in programs that you want to use conditioning logic to see if the program should execute. It's also helpful in programs that have complex mainline logic. You can code the *INZSR to test for reasons you should not execute the mainline and if any are met, turn on *INLR and let the program end.

Those are a couple of coding methodologies that you can introduce into your programs. As with all new styles, be careful in how you implement them until you fully understand their ramifications.

论坛徽章:
0
2 [报告]
发表于 2004-04-10 05:15 |只看该作者

THE INS AND OUTS OF *INLR (From Search400)

LR = last record
SR = subroutine
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP