西纳特拉消息队列
Starling 是一个很棒的(至少对于小型项目)且简单的消息队列,但是,它并不实际上管理或启动消耗队列的工作人员。 Workling 可以为 Rails 项目执行此操作,但不适用于纯 ruby 应用程序,也不适用于 Sinatra。
在我分叉工作或使用线程/分叉创建自己的自定义工作之前,是否有另一个项目可以做到这一点?
Starling is a great (at least for small projects) and simple message queue, however, it doesn't actually manage or start workers that consume the queues. Workling does this for Rails projects, but doesn't work for pure ruby applications, neither for Sinatra.
Before I fork workling, or create my own custom one with threads/fork, is there another project that does it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看 resque。它与框架无关,并且包含 rake 任务来启动任意数量的工作线程来使用您的队列。它使用 redis 列表作为队列后端,因此您需要安装和管理它。
Look at resque. It is framework agnostic and contains rake tasks to start an arbitrary number of workers to consume your queues. It uses redis lists for the queue backends, so you will need to install and manage that.