确定 Rails 应用程序中当前 Resque 工作线程的数量

发布于 2024-12-21 05:12:22 字数 467 浏览 1 评论 0原文

在我的 Rails 应用程序中,我想弹出一个窗口,显示当前正在运行的 Resque 工作线程的数量。这主要是为了当没有工作人员运行时我可以警告用户。

我在routes.rb中像这样安装了Resque管理应用程序:

mount Resque::Server, :at => "/admin/resque"

我看到有一个名为/admin/resque/stats.txt的文本文件,其中包含以下内容:

resque.pending=0 resque.processed+=8 resque.failed+=0 resque.workers=2 resque.working=0 queues.model_job_queue=0

我应该获取此文件吗?解析它的 resque.workers 的值还是有其他更好的方法?

In my Rails app, I'd like to pop up a window that shows the number of Resque workers currently running. This would mainly be so that I can warn users when there are no workers running.

I have the Resque admin app mounted like so in routes.rb:

mount Resque::Server, :at => "/admin/resque"

I see that there is a text file called /admin/resque/stats.txt that includes the following:

resque.pending=0 resque.processed+=8 resque.failed+=0 resque.workers=2 resque.working=0 queues.model_job_queue=0

Should I fetch this file and just parse it for the value of resque.workers or is there another, better method?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

老子叫无熙 2024-12-28 05:12:22

我会直接向 Resque 询问一组工作人员并计算返回的元素。

1.9.2-p290 :003 > Resque.workers.count
=> 12

这正是 resque 获取构建 /resque/stats.txt 的计数的方式。

希望这有帮助。

I'd ask Resque directly for an array of workers and count the elements returned.

1.9.2-p290 :003 > Resque.workers.count
=> 12

This is exactly how resque gets the count to build /resque/stats.txt.

Hope this helps.

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