Tutorials

Migrate tags in Rails to PostgreSQL array from ActsAsTaggableOn
ActsAsTaggableOn is a swiss army knife solution if you need to add tags to your ActiveRecord model.Just by adding one gem to your Gemfile and acts_as_taggable to the model you get everything you need: adding tags, searching for a model by tag, get...







More than "Hello World" in Docker: Build Rails Sidekiq web apps in Docker
There is no shortage of web tutorials on how to display "Hello World" in Docker. The problem is that the path from getting your app to say "Hello World" in Docker, to running production-grade applications in AWS, is often not as straightforward. E...

redis-namespace: when one sidekiq process is not enough
Few months ago I was working in a project in which we had two applications communicating with each other. Each of them had to has its own sidekiq process, but they were deployed to one server. After some time, I realized that after deploying one a...