You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note the use of faktory_options to add custom job options to control various Faktory features.
3. Create a few jobs
$ bundle exec rails c
> SomeJob.perform_later("World")
4. Start a Worker
$ bundle exec faktory-worker
The worker process should perform that job and print out "Hello, World". You've now got Faktory on Rails!
Notes
Processing jobs outside ActiveJob
If you are going to enqueue jobs in Ruby but process them in another language, I recommend sticking with the plain Faktory::Job API. ActiveJob is designed for use by Rails only.