수색…


소개

활성 작업은 작업을 선언하고 다양한 대기열 백엔드에서 실행되도록하기위한 프레임 워크입니다. 이러한 일은 정기적 인 정산, 청구 료, 우편물 등 모든 것이 될 수 있습니다. 작은 단위의 작업 단위로 나눠서 병렬로 실행할 수있는 모든 것.

직업 만들기

class GuestsCleanupJob < ApplicationJob
  queue_as :default
 
  def perform(*guests)
    # Do something later
  end
end

작업 대기열에 넣기

# Enqueue a job to be performed as soon as the queuing system is free.
GuestsCleanupJob.perform_later guest


Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow