APC 和 ionCube 完全兼容吗?
我花了一个小时的大部分时间寻找这个问题的明确答案。我需要使用的脚本需要启用 IonCube 加载程序,而且我越来越喜欢 APC。
如果在同一台服务器上启用两者,我应该会遇到任何问题吗?
I've spent the better part of an hour looking for a definitive answer to this question. A script I need to use requires the IonCube loader be enabled and I've grown quite fond of APC.
Should I expect any problems if both are enabled on the same server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我刚刚花了 3 天调试加载 APC 和 Ioncube 的设置。它可以工作,但 strace 透露每个 open() (在 php 文件上)都会被调用两次,即使对于未进行 ioncube 编码的文件也是如此。因此,如果您担心 I/O 性能,那么将这两者结合起来并不是一个好主意。
I've just spent 3 days debugging a setup that loads both APC and Ioncube. It works, but strace disclosed that every open() (on php files) was called twice, even for files that aren't ioncube encoded. So if you're worried about i/o performance, it's a bad idea to combine these two.
不可以,如果您的文件是用 ionCube 编码的,您将无法使用 APC。
此外,它是没有用的。您为什么要使用 ionCube(除非您使用的是用它编码的软件)?
No, if your files are encoded with ionCube you won't be able to use APC.
Besides, it is useless. Why would you want to use ionCube (unless you are using software encoded with it)?