WebNews
Please enter a web search for web results.
NewsWeb
Pro File Uploads in Rails 8: Speed and Scalability with Direct Uploads
6+ hour, 56+ min ago (344+ words) This is a terrible way to do it. While that 100 MB file is transferring, your Rails worker (Puma) is frozen. It can't handle other users. If three people upload large files at once, your whole app will stop responding. In…...
Stop Guessing Between. count, .length, and. size in Rails
1+ day, 13+ hour ago (362+ words) When investigating a slow Rails endpoint, it's common to start by looking for N+1 queries, missing indexes, or expensive joins. Sometimes, though, the real culprit is much smaller. It might be hiding in a method call you've written hundreds of…...
Ruby Reactor Now Has Middlewares and Open Telemetry " Here's Why That Matters
3+ day, 44+ min ago (376+ words) You've built a checkout reactor that reserves inventory, charges a card, generates a shipping label, and sends a confirmation email. It runs through Sidekiq. When something fails, compensation logic rolls it back. It works. Then your team asks: "How many…...
How to safely remove a Rails column: finding every real reference before you delete
3+ day, 12+ hour ago (1681+ words) Every Rails project has at least one of these. A model with an old column that's probably not used anymore. "Probably" is the scary part. If something in production is still referencing it, deleting the column breaks the app. No…...
Top 10 Ruby on Rails alternatives: Web frameworks compared
4+ day, 19+ hour ago (1766+ words) Ruby on Rails is a strong way to build web apps, APIs, Saa S products, and internal tools. It's a convention-based framework built on the Model-View-Controller (MVC) pattern, which separates your data, your pages, and the logic connecting them, and makes…...
Top 10 Ruby on Rails alternatives: Key features and pricing
4+ day, 18+ hour ago (1766+ words) Ruby on Rails is a strong way to build web apps, APIs, Saa S products, and internal tools. It's a convention-based framework built on the Model-View-Controller (MVC) pattern, which separates your data, your pages, and the logic connecting them, and makes…...
How to give Claude (or Cursor) access to your Rails app's activity logs
5+ day, 16+ hour ago (891+ words) Ask Claude this, today, with no setup: "What did user 4421 do in our app yesterday?" You will get an answer. It will be confident, specific, and completely made up. Claude has no access to your production database. So it does…...
Rails Health Check
1+ week, 1+ day ago (393+ words) Most applications start with a simple question: Is the process alive? Rails answers that with the built-in /up endpoint. But production systems need to answer a much more important question: Is the application actually healthy? Databases, Redis, queue systems, SMTP…...
Dynamic OG Images in Rails
1+ week, 2+ day ago (531+ words) This post walks through the three realistic ways to do it in Rails, then builds out the one that keeps your view layer and your servers clean: rendering an ERB template to a PNG over HTTP, with caching and a…...
Who's Going To Ruby Conf 2026?
1+ week, 3+ day ago (258+ words) Ruby Conf holds a special place in my heart. It was the very first tech conference I attended after receiving a scholarship fresh out of Flatiron School back in 2017 (you can read about my experience here), and then in 2021, it…...