What do sidekiq do with slim and sinatra gems for monitoring, what does sinatra do and what does slim do?
And why do we set require: false
with sinatra gem.
Asked
Active
Viewed 96 times
-1

Sergio Tulentsev
- 226,338
- 43
- 373
- 367

Mohamed Ahmed Taher Mohamed
- 303
- 1
- 4
- 16
2 Answers
1
Sidekiq hasn't used slim for two years now. You don't need it.
Sinatra is used to provide the Web UI. require: false
ensures it is not loaded where it is not needed.

Mike Perham
- 21,300
- 6
- 59
- 61
0
Sidekiq uses slim and sinatra for its admin web page (where you can monitor your queue size, various counters, stuff like this)

Sergio Tulentsev
- 226,338
- 43
- 373
- 367