如何从 PHP 脚本检查 ruby 脚本是否在后台运行?
假设 ruby 脚本正在使用 PHP 运行
ruby.rb SOMEUSERID
,我如何查明当前是否正在运行完全相同的东西?目前我正在使用 PID 来检查,但我不确定这是否有效。如果有很多用户运行 ruby 脚本,并且 ruby 脚本意外关闭怎么办? php 脚本现在寻找这个 PID,然后发现它是其他人的 ruby 脚本......问题随之而来。
say a ruby script is running
ruby.rb SOMEUSERID
using PHP, how can i find out whether something exactly like that is currently running or not ? Currently i am using PID to check but im not sure if this is efficient. What if there are lot of users running the ruby script, and the ruby script unexpectedly closes. The php script now looks for this PID, and then it turns out it's somebody else's ruby script....trouble ensues.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不喜欢这个想法,但你可以在 Linux 上执行此操作,
不确定其他系统的情况如何。
I don't like the idea but you can do this on linux
not sure what's about other systems.
也许解析“ps ax”的输出
Parse output from 'ps ax' perhaps