수색…


소개

Rails 4.2부터 사용할 수있는 Active Job은 작업을 선언하고 다양한 대기열 백엔드에서 실행되도록하는 프레임 워크입니다. 차단되지 않고 병렬로 실행될 수있는 되풀이 또는 지터 작업은 활성 작업의 좋은 사용 사례입니다.

샘플 작업

class UserUnsubscribeJob < ApplicationJob
  queue_as :default

  def perform(user)
    # this will happen later
    user.unsubscribe
  end
end

생성기를 통해 활성 작업 생성

$ rails g job user_unsubscribe


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