Posts by Pedro Moreira Mamede • 436 points
2 posts
-
4
votes1
answer563
viewsA: Sidekiq rails in production
In Production you should run Sidekiq in background (through the -d parameter) and also indicate the file where the sidekiq log will be saved. bundle exec sidekiq -d -L sidekiq.log -e production…
-
28
votes7
answers5450
viewsA: How to write easy-to-maintain, readable code?
There are several techniques to improve the readability of the code, and in some cases this may even be relative. A very good book on the subject is Clean Code (Clean Code) by Uncle Bob. These two…