You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
require 'sinatra'
|
|
require 'sidekiq'
|
|
require 'redis'
|
|
require 'sidekiq/api'
|
|
|
|
$redis = Redis.new(url: ENV['REDIS_URL'])
|
|
|
|
class SinatraWorker
|
|
include Sidekiq::Worker
|
|
|
|
def perform(msg="lulz you forgot a msg!")
|
|
sleep 2 + rand(10)
|
|
$redis.lpush("sinkiq-example-messages", msg)
|
|
end
|
|
end
|