Blog
Browse through our blog page filled with updated information and the latest tips to help you achieve your goals.

Rails `has_secure_password` with Argon2: Complete Migration Guide
Step-by-step guide to enabling Argon2 with has_secure_password in Rails. Migrate from BCrypt with zero downtime using the Hybrid Verifier pattern in production.

Ruby on Rails Performance Optimization Patterns for 2026
Concrete benchmarks and patterns for Rails performance in 2026 - YJIT speedups, Rails 8 query optimization, Redis caching, and N+1 elimination.

Solid Trifecta: When to Keep Redis in Rails 8
Rails 8 defaults to Solid Cache, Solid Queue, and Solid Cable. Most apps don't need Redis anymore. Some still do. Here's how we decide which workloads stay.

Active Job Continuations in Rails 8.1
Rails 8.1's ActiveJob::Continuable resumes long jobs from their last completed step. How to wire it in, when not to, why Kamal deploys stop losing work.

Rails 8.1: Subscribe to Events, Skip Logs
Rails 8.1 replaces log parsing with structured events. Wire ActiveSupport::Notifications to Datadog, New Relic, or Prometheus - no regex required.

Rails CVE-2026-41316: Detection and Patch
CVSS 8.1 universal RCE chain through ERB::DeprecatedInstanceVariableProxy and Marshal.load. Detection, upgrade path, Rails 7.0/7.1 EOL options.

Hotwire Turbo 8 Performance Patterns: Real-Time Rails Applications
Master Hotwire Turbo 8 performance optimization for real-time Rails applications. Complete guide with advanced patterns, benchmarks, and production deployment strategies.

When Small Method Choices Cascade Into Big Performance Wins
How one Ruby method change from gsub to tr cut CPU usage by 40%. Real examples of small method choices that cascade into big performance wins in Rails apps.

Rails 7.1: How Ruby on Rails Developers Can Use the .with Query Method for CTEs
For Ruby on Rails developers looking to level up their database query skills, Rails 7.1 introduced a...

Turbocharge Your Rails Apps with Smart Database Indexing
Is your Rails application running slow? Are search queries taking forever to complete? The solution...