作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 Rails 应用程序,我想在其中运行作业,但我需要在原始事件后 2 小时运行该作业。
用例可能是这样的:
用户发布产品列表。后台作业正在排队以向 3rd 方 api 联合列表,但即使在最初的请求之后,响应也可能需要一段时间,而 3rd 方的解决方案是每 2 小时轮询一次,看看我们是否可以获得成功确认。
那么有没有一种方法可以将作业排队,以便 worker 守护进程知道忽略它或只在预定的时间收听它?
我不想使用 cron,因为它会加载整个应用程序堆栈,并且可能会在重叠的长时间运行的作业上执行两次。
可以为此使用优先级队列吗?有哪些解决方案可以实现这一点?
最佳答案
尝试延迟作业 - https://github.com/collectiveidea/delayed_job
类似的东西?
class ProductCheckSyndicateResponseJob < Struct.new(:product_id)
def perform
product = Product.find(product_id)
if product.still_needs_syndicate_response
# do it ...
# still no response, check again in two hours
Delayed::Job.enqueue(ProductCheckSyndicateResponseJob.new(product.id), :run_at => 2.hours.from_now)
else
# nothing to do ...
end
end
end
第一次在 Controller 中初始化作业或者在模型上初始化 before_create 回调?
Delayed::Job.enqueue(ProductCheckSyndicateResponseJob.new(@product.id), :run_at => 2.hours.from_now)
关于ruby-on-rails - 有没有办法在没有 cron 的情况下在设定的时间运行作业,比如预定队列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17127506/
我是一名优秀的程序员,十分优秀!