Category Answers

Rails maintenance mode

Question Is it possible to activate a maintenance mode in a Rails application? Basically we need to stop the requests and display a maintenance page while we perform some updates on the database. Answer There isn’t a built-in solution in…

Passkeys explained simply

Question Passkeys will probably replace passwords in the future. How do they work? Can you explain passkeys in simple words? Answer When you sign up to a website, instead of entering a new password, your browser generates a new key…

How to reduce memory usage in Ruby

Question Sidekiq workers consume a lot of memory: how can I fix that? I have a Rails application that can usually run with about 1 GB of RAM. However there are some Sidekiq workers that constantly grow over time –…