惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

I
InfoQ
S
SegmentFault 最新的问题
T
Tailwind CSS Blog
美团技术团队
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
爱范儿
爱范儿
宝玉的分享
宝玉的分享
Last Week in AI
Last Week in AI
量子位
博客园 - Franky
酷 壳 – CoolShell
酷 壳 – CoolShell
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
The Cloudflare Blog
小众软件
小众软件
云风的 BLOG
云风的 BLOG
WordPress大学
WordPress大学
P
Proofpoint News Feed
Stack Overflow Blog
Stack Overflow Blog
aimingoo的专栏
aimingoo的专栏
Y
Y Combinator Blog
B
Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
C
Check Point Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Safer Memoization in Ruby
Chuck · 2026-06-15 · via DEV Community

Memoization is one of those techniques most Ruby developers start using almost immediately. It's simple, elegant, and often provides significant performance improvements with just a single line of code. Over the years, I've found myself constantly reaching for memoization, but I've also discovered that the common approaches many of us use have a surprising number of edge cases and limitations. That led me to build SafeMemoize, a library designed to make memoization more reliable for real-world applications.

The Problem with Traditional Memoization

Most Ruby developers are familiar with this pattern:

def current_user
  @current_user ||= find_user
end

It's concise and works well most of the time.

Until it doesn't.

If the method returns nil or false, the computation is performed again on every call. In many applications, those values are perfectly valid results, but the standard ||= idiom can't distinguish between:

  • "This value hasn't been computed yet."
  • "The value was computed and happened to be nil."
  • "The value was computed and happened to be false."

As applications grow, other concerns start to appear:

  • Thread safety
  • Expiration and cache invalidation
  • Methods with arguments
  • Memory growth
  • Shared caches
  • Request-scoped caching
  • Observability and metrics

Many developers end up reinventing these solutions over and over again.

Introducing SafeMemoize

SafeMemoize is a zero-dependency Ruby library that provides thread-safe memoization while correctly handling nil and false return values.

The goal wasn't to create yet another cache library.

Instead, the goal was to provide a safer and more capable alternative to the ad hoc memoization code that accumulates in many applications.

Some of the capabilities include:

  • Thread-safe operation
  • Correct handling of falsy values
  • Argument-aware memoization
  • TTL expiration
  • Cache invalidation
  • Shared and request-scoped caches
  • External cache store support
  • Metrics and instrumentation
  • Rails integration

While the API remains intentionally simple, it provides enough flexibility to support everything from small scripts to larger Rails applications.

Getting Started

Adding SafeMemoize is straightforward:

gem "safe_memoize"

Then prepend the module and mark methods for memoization:

class UserService
  prepend SafeMemoize

  def current_user
    User.find_by(session_id: session_id)
  end

  memoize :current_user
end

That's all that's required.

Subsequent calls return the cached value without repeating the work.┄

Handling nil and false Correctly

One of the primary motivations behind SafeMemoize was ensuring that methods are computed exactly once, regardless of the value returned.

For example:

class FeatureFlags
  prepend SafeMemoize

  def enabled?
    ENV["NEW_FEATURE"] == "true"
  end

  memoize :enabled?
end

Even when the result is false, the method is evaluated only once.
This small difference eliminates an entire class of subtle bugs.

More Than a Single Instance Variable

Simple memoization works well for a handful of methods, but larger applications often need more control.

SafeMemoize provides support for things like:

  • Expiring cached values after a configurable time.
  • Limiting cache growth.
  • Sharing values across instances.
  • Integrating with Rails request lifecycles.
  • Using Redis or Rails.cache as backing store.
  • Observing cache behavior through metrics and notifications.

These capabilities make memoization practical in environments where simple instance variables eventually become difficult to manage.

Thread Safety Matters

Modern Ruby applications frequently process multiple requests concurrently.

Without synchronization, multiple threads may perform the same expensive work simultaneously, defeating the purpose of memoization.

SafeMemoize uses a per-instance mutex and double-check locking to ensure that expensive computations happen only once, even under concurrent load.

The result is a cache that behaves predictably under real-world workloads.

Designed for Ruby and Rails

Although SafeMemoize works in plain Ruby applications, many of the ideas behind the library came from Rails projects.

Request-scoped caching, instrumentation, and external cache stores make it easy to fit into existing Rails applications without introducing another large dependency.

At the same time, the library remains lightweight enough to use in service objects, scripts, background jobs, and standalone Ruby programs.

Why I Built It

I didn't set out to build a cache framework.

I simply wanted memoization that:

  • Correctly handled nil and false.
  • Was safe under concurrency.
  • Scaled beyond a few instance variables.
  • Worked naturally with Rails.
  • Didn't require additional dependencies.

Over time, that evolved into SafeMemoize.

Because while memoization looks simple, production applications often need something a little safer than:

@value ||= expensive_operation

And sometimes, that one line deserves a little more help.