Asynchronous processing
🏠 HOME
OUR STACK
Check out the the doc at https://github.com/mperham/sidekiq/wiki
class MyDummyPutsJob
include Sidekiq::Worker
def perform(text)
puts text
end
end
MyDummyPutsJob.perform_async("Hi there future you!")
gem install foreman
forman start -f Procfile.dev
<aside> <img src="/icons/playback-previous_lightgray.svg" alt="/icons/playback-previous_lightgray.svg" width="40px" /> Jobs
</aside>
<aside> <img src="/icons/playback-next_lightgray.svg" alt="/icons/playback-next_lightgray.svg" width="40px" /> RSpec
</aside>