Sidekiq
Asynchronous processing
Job Definition
class MyDummyPutsJob
include Sidekiq::Worker
def perform(text)
puts text
end
endJobs Enqueueing
MyDummyPutsJob.perform_async("Hi there future you!")How Sidekiq really works
Tips and Tricks
Run all Sidekiq processes on your computer
Last updated
Was this helpful?
