Blogs
Fix slow page loads in a Ruby on Rails application by identifying n 1 queries | BigBinary Blog
In one of our internal products, we received complaints regarding slow page loads and longer response times for a certain page. Our team members used New Relic to debug the cause of the slowness and were able to resolve the issue. After the issue ...
Ruby Code Quality with Ernesto Tagwerker | hexdevs
Are you working on Ruby on Rails Applications that are constantly on fire, overwhelmed by technical debt?Instead of being a firefighter, what if you could be a happy programmer again and “Escape the tar pit”?Learn exactly how to measure tech debt ...
Noteflakes: Signal handling in concurrent apps with Ruby and Polyphony
In the last few weeks I’ve been writing about different aspects of Polyphony, a library for writing fiber-based concurrent apps in Ruby. Polyphony makes it easy for developers to use stock Ruby core and stdlib classes and APIs in a highly-concurre...
Starting your Rails project with an ultra-light setup
Suppose that we need to create a Rails project that will use the classic ERB views and PostgreSQL. One way to start with is simply by running the following command to create a new Rails project called my-project :I’m using Ruby 2.7.1 and Rails 6ra...