[Original post by Anil Maurya is here - posted here with his permission] When I was growing up, Software Engineer and Programmer seems same term to me. Now after working a couple of years as a Software Engineer I think I can distinguish between the two terms. Programming is a small part of Software Engineering. … Continue reading Software Engineering Vs Programming
Category: General
Confessions Of A First-time Speaker
Shweta shares her fears as a first time speakers at RubyConf India and talks about ways to overcome hurdles in open-source contribution. A good honest and straight from the heart post.
Are Your Workers Actually Working?
Sidekiq workers, status checks and much more explained very neatly by Pramod.
Most of the Rails developers choose Sidekiq for background processing in their Rails applications and setup the Sidekiq workers to do the long running work in background.
But as a Rails developer have you ever wondered whether your workers are doing their job? Now question may pop up in your mind, How to know whether my background workers doing their job? No worries now you can do that easily with sidekiq-status gem, How? Lets see how …
Bit about sidekiq-status:
- An extension to the sidekiq message processing to track your jobs.
- sidekiq-status implemented sidekiq middleware and uses Redis underneath for storing statuses and meta information about jobs.
- In latest release gem added some really cool features like more status types, Web UI enhancements which makes it really cool to have in your projects for tracking background jobs.
Let’s setup sample worker:
To track job progress of worker add sidekiq-status gem to the Gemfile and after…
View original post 262 more words
