如何从 c++ 运行 php 脚本通过fastcgi
我正在为高性能 CMS 编写一个 C++ 网络服务器。我们首先使用 PHP 来做所有事情,但我们注意到性能问题。但是我不能要求前端开发人员用 C++ 代码编写视图/模板。所以我想运行一个 FastCGI 服务器(我不知道正确的名称),它包含一个 PHP FastCGI 应用程序。因此,当应用程序需要渲染视图时,视图通过 FastCGI 将数据传递给 PHP 脚本,PHP 渲染 HTML(或类似的东西),通过 FastCGI 将其发送回视图,然后 C++ 应用程序将 HTML 发送回给客户。
有人知道更好的解决方案吗?或者我在哪里可以找到好的 FastCGI 服务器或关键字,这样我就可以自己找到它(在 Google 上)。
I am writing a C++ webserver for a high(er) performance CMS. We first used PHP for everything but we noticed performance issues. However I can not ask the front-end developers to write the views / templates in C++ code. So I want to run a FastCGI server (I dont know the right name) which holds a PHP FastCGI app. So when the application needs to render a View, the views passes data to a PHP script via FastCGI, PHP renders the HTML (or something like that), sends it back to the View, via FastCGI, and the C++ application sends the HTML back to the client.
Does somebody knows a better solution or where i can find a good FastCGI server or keywords so i can find it my self (on Google).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是您要找的吗?
http://php-fpm.org/
Is this what you're looking for?
http://php-fpm.org/