如何在 iSeries 上为 PHP 作业分配更多内存?

发布于 2024-10-14 07:04:13 字数 127 浏览 3 评论 0原文

在 iSeries 上运行 php 脚本时,即使我在 php.ini 中将内存限制设置为 -1...PHP 仍显示内存不足 256MB 左右。我很好奇是否有一种方法可以为 iSeries 上的作业分配更多内存,以允许 PHP 分配更多内存。

When running php scripts on the iSeries, even though I set my memory limit to -1 in php.ini... PHP says it runs out of memory around 256MB. I'm curious if there is a way to allocate more memory to a job on the iSeries to allow PHP to allocate more memory.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦情居士 2024-10-21 07:04:13

终于弄清楚了!

在 iSeries apache 配置中,您必须在 httpd.conf 文件中设置以下环境变量:

SetEnv="LDR_CNTRL=MAXDATA=0x80000000"

这将允许您通过 Web 服务器访问一个 php 脚本中的 2.25GB 内存,而不是 256MB

(在我的例子中,我使用的是 ZendServer,并且有编辑配置文件 fastcgi.conf)

参考:

Zend 论坛帖子

IBM 参考

Finally figured this out!

On the iSeries apache configuration you must set the following environment variable in the httpd.conf file:

SetEnv="LDR_CNTRL=MAXDATA=0x80000000"

This will allow you to access 2.25GB of memory in one php script via the web server instead of 256MB

(In my case I am using ZendServer and had to edit the config file fastcgi.conf)

Ref :

Zend Forum Post

IBM Reference

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文