Ruby/CGI:如何检测浏览器是否已请求“停止”操作并忽略请求
我知道需要时间的 CGI 和 PHP 脚本存在响应用户请求(来自浏览器的客户端停止请求)的问题。
在 PHP 中可以通过ignore_user_abort()调用忽略该请求。 Ruby 有类似的吗?我用谷歌搜索了几篇文章。我发现我们需要忽略这个进程的SIG_INT。
一般情况下,在 CGI/Ruby 或 CGI 中是否有正确的方法来执行此操作
I know that CGI and PHP scripts which take time have this problem of responding to USER requests (client side STOP request from browser) .
The request could be ignored in PHP via ignore_user_abort() call . Is there a similar one for Ruby . I googled through few articles. I found out that we need to ignore SIG_INT to this process .
Is there is a proper way of doing this in CGI/Ruby or CGI in general
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
信号使用
Signal
类 (http://ruby-doc.org/core/classes/Signal.html) 进行处理。您可以像这样忽略信号:Signals are handled using the
Signal
class (http://ruby-doc.org/core/classes/Signal.html). You can ignore a signal like so: