ARM (AT91) 有 PHP 缓存吗?
我有一个 php 应用程序在基于 ARM 的嵌入式系统上的 busybox httpd 上运行。该应用程序非常慢,但我不想用 C++ 重写它。我正在寻找一种在 ARM 上预编译/缓存它的方法,但找不到任何可用于此架构的系统。
I have a php application running on busybox httpd on an ARM-based embedded system. The application is quite slow but I would prefer not to rewrite it in C++. I'm looking for a way to precompile/cache it on ARM but cannot find any of the systems to be available for this architecture.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我能够将 APC 编译为 PHP 的静态扩展。该过程或多或少如下(使用 buildroot):
祝你好运!
I was able to compile APC into as static extension to PHP. The procedure is more or less following (using buildroot):
Good luck!