Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
将 C/C++ cgi 应用程序更改为 Fastcgi 有多可行?这是否只需要更改代码?还是需要更改 apache 服务器的设置?
改变的明显好处是什么?从 cgi 到 Fastcgi 的变化值得这些好处吗?
切换到 FastCGI 的主要好处是您的应用程序将在后台连续运行,而不是为每个请求启动。如果您的应用程序有很多初始化,您可以通过减少这些时间来大幅提升速度。
这将需要重新配置 Apache,但并不复杂。它应该需要更改您的应用程序,因为现在每个服务器只有一个实例,而不是每个请求一个实例。您必须自己决定该更改是否可行;这实际上取决于您的代码的结构。