Benchmarking Postgres vs. Redis Reads
I was curious what would be the difference in performance between Postgres and Redis for basic read operations. Redis is highly optimized for writing and reading specific types of data structures, where Postgres, with its ACID guarantees and general-purpose features, can't compete. But for the most basic read operations, where Postgres . . .
Setting Priorities For Sidekiq Workers
I love Sidekiq, and Medstro is a Sidekiq Pro customer. We started out with pretty basic usage, using no custom workers, only using the ActiveRecord extension which enables .delay
that you might be familiar with in other queueing systems. We also use devise-async to automatically catch all our outgoing devise email.
We've . . .
MetaInspector
MetaInspector is a handy gem which makes it easy to get information about a webpage such as…
- its title
- its description
- metadata like Facebook Open Graph or Twitter Cards
- a list of all images on the page
So let's say that you have a field in your app's user profiles for "personal . . .
Monitoring connection quality of Amtrak wifi vs. phone tethering
Kudos to Amtrak for having free Wi-Fi. But the network quality is dependent on a mobile data connection, which varies throughout the trip. Meanwhile, I also have tethering on my phone.
One might guess that the connection quality would be pretty much identical between the two, since they both rely on similar or the same networks over . . .
DHH Sounds Out of Touch
I just read Uncle Bob's Test Induced Design Damage?.
I keep fearing the day when Rails messes up and becomes too complicated or poorly maintained or something else, but that hasn't happened. It’s really an impressive solid project that solves common problems and steadily integrates popular solutions to new problems with each . . .
Never use ActiveRecord persistence methods in Rails controllers
And never, ever use ActiveRecord filters.
Rails controllers are a mess.
An ongoing discussion in the Rails community is how, when, and if to test controllers (and how impossible is is to write tests for controllers that are both thorough and not completely isomorphic with implementation).
There are many dimensions to this problem, and it touches a lot of the . . .
What I would like in Ruby 3
Ruby development is hurtling along these days. In 2012 1.9 finally became the norm, and in 2013 we got both 2.0 and 2.1. All of these versions brought small but steady feature improvements.
Here are some thoughts on how I would like the language to change, possibly appropriate for Ruby 3 or Ruby 4.