如何从 c++ 运行 php 脚本通过fastcgi

发布于 2024-11-06 09:46:56 字数 329 浏览 0 评论 0原文

我正在为高性能 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 技术交流群。

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

发布评论

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

评论(1

想念有你 2024-11-13 09:46:56

这是您要找的吗?
http://php-fpm.org/

PHP-FPM(FastCGI 进程管理器)是
替代 PHP FastCGI
实施与一些额外的
适用于任何规模的网站的功能,
尤其是繁忙的网站。

Is this what you're looking for?
http://php-fpm.org/

PHP-FPM (FastCGI Process Manager) is
an alternative PHP FastCGI
implementation with some additional
features useful for sites of any size,
especially busier sites.

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