重新加载 FastCGI 应用程序
我使用 FastCGI 将 C++ 二进制文件(使用 Wt 框架编写)公开为 Web 应用程序。 但是,在我修改应用程序并重新编译它之后,为了让新会话看到更改(活动会话继续使用旧版本直到过期),我必须重新加载 Apache。
是否可以以不需要重新加载 Apache 的方式配置系统,以使新编译的 FastCGI 应用程序可供用户使用? 谢谢。
I'm using FastCGI to expose a C++ binary (written using the Wt framework) as a web app. However, after I have modified the app and recompiled it, in order for new sessions to see the changes (active sessions keep using the old version until they expire), I have to reload Apache.
Is it possible to configure the system in such a way that doesn't require to reload Apache in order to make the newly compiled FastCGI app available to users? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
引用常见问题解答:
因此,您可以在配置中启用自动更新,或者您的程序通过您最喜欢的某种机制自行重新加载。
Quote from the FAQ:
So, you either enable automatic update in the configuration, or your program does the reloading itself by some mechanism you like best.