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

推荐订阅源

人人都是产品经理
人人都是产品经理
博客园_首页
IT之家
IT之家
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Vercel News
Vercel News
美团技术团队
D
Docker
WordPress大学
WordPress大学
T
Tailwind CSS Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
The Cloudflare Blog
Y
Y Combinator Blog
F
Fortinet All Blogs
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
G
Google Developers Blog
爱范儿
爱范儿
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
MongoDB | Blog
MongoDB | Blog
S
SegmentFault 最新的问题
GbyAI
GbyAI
Hugging Face - Blog
Hugging Face - Blog
Microsoft Azure Blog
Microsoft Azure Blog
A
About on SuperTechFans

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
Compile Zod (30x faster Zod validation)
Gajus Kuizinas · 2026-06-19 · via DEV Community

Lets start with a code example:

import { pool, sql } from "./db.js";
import { z } from "zod";

const getUser = (id: number) => {
  return pool.one(
    sql.type(
      z.object({
        id: z.number(),
        name: z.string(),
      }),
    )`SELECT id, name FROM users WHERE id = ${id}`,
  );
};

There are two performance issues in the above code:

  1. z.object({}) initialization
  2. data validation using Zod parser (interpretation)

Initialization

The first one is something you can solve simply by writing a code that avoid re-initialization, e.g.,

import { pool, sql } from "./db.js";
import { z } from "zod";

const UserZodSchema = z.object({
  id: z.number(),
  name: z.string(),
});

const getUser = (id: number) => {
  return pool.one(sql.type(UserZodSchema)`SELECT id, name FROM users WHERE id = ${id}`);
};

This alone will increase your validation throughput by 100-600x (depending on the complexity of the schema).

However, I would argue that changing code (assigning unnecessary variables) just so gain performance improvements is bad DX.

Instead, you should be able to write code however you like, and your tooling should re-organize it in whatever way that makes the code run optimally.

Interpretation

When you call UserZodSchema.parse(row), Zod walks the schema like an interpreter walks a syntax tree. A lot happens – and almost none of it depends on row:

  • A fresh parse context and a root payload { value, issues: [] } are allocated, including an issues array you'll almost never read.
  • The result is checked against instanceof Promise – every synchronous parse pays a tax for the possibility of being async.
  • For each property, another { value: input[key], issues: [] } payload is allocated and el._zod.run(...) dispatches into the child – a string here, a number there, a nested object next. It's megamorphic; the engine can't specialize it.
  • Each child recurses, allocating its own payload and its own issues array.

None of that depends on the data. It depends on the shape of the schema – and the shape was fixed the moment
you wrote z.object({ id: z.number(), name: z.string() }). Zod re-discovers that shape on every single call.

That's the tell: Zod is a tree-walking interpreter. The schema is a data structure that describes validation; .parse() is the interpreter that walks it at runtime. Like every interpreter, it pays for its generality – indirection, allocation, dynamic dispatch – over and
over, for a shape that never changes.

"But Zod v4 compiles objects!" It does, and it's clever about it: $ZodObjectJIT uses new Function to generate a flattened parse routine the first time you call it. It helps – but read what it emits and you hit the ceiling:

  • It's gated on allowsEval. Under a strict Content-Security-Policy (no unsafe-eval) – the norm for a lot of frontends and edge runtimes – it silently falls back to the interpreted path.
  • It's generated lazily and in-process: on the first parse, in your process, on your hot path's first hit.
  • It flattens one level only. Every property still goes through shape[key]._zod.run({ value: input[key], issues: [] }, ctx) – still a payload allocation, still a dynamic dispatch into the child.
  • It still builds a fresh result object and copies every key into it on success.

It narrows the gap. It can't close it: the work is still happening at runtime, in your process, on every call.

Compiling the parser

We just did this. Hoisting took schema construction – work that doesn't depend on the input – and lifted it out of the hot path. Interpretation is the same problem one level deeper: walking the schema doesn't depend on the input either. So lift it out too, all the way out, to build time.

The shape is known when you write it. A compiler can read it once, ahead of time, and emit the exact validator: no tree to walk, no dispatch, no per-node payloads. Turn the data structure that describes the work into the code that does the work. That's just... what a compiler is.

That's zod-compiler. Same deal as hoisting – you keep writing plain Zod, the tooling reorganizes it. Drop it into your bundler:

// vite.config.ts
import zodCompiler from "zod-compiler/vite";

export default defineConfig({
  plugins: [zodCompiler()],
});

No imports in your source. No wrappers. No compile(...). The exact slonik snippet we started with – schema defined inline, anonymous, never exported – compiles to this (lightly trimmed):

import { __zcFin, __zcFinD, __zcIT, __zcMkv } from "virtual:zod-compiler/runtime";

const _zh_6c9cb1a3 = /* @__PURE__ */ (() => {
  function __fc_0(input) {
    return (
      typeof input === "object" &&
      input !== null &&
      !Array.isArray(input) &&
      Number.isFinite(input["id"]) &&
      typeof input["name"] === "string"
    );
  }
  function __sw_2(input) {
    var _e = [];
    /* error-collecting walk – runs only when .error is read */ return _e;
  }
  function safeParse__zh_6c9cb1a3(input) {
    if (__fc_0(input)) {
      return { success: true, data: input };
    }
    return __zcFinD(__sw_2, input);
  }
  return __zcMkv(
    safeParse__zh_6c9cb1a3,
    z.object({
      id: z.number(),
      name: z.string(),
    }),
    __fc_0,
  );
})();

import { pool, sql } from "./db.js";
import { z } from "zod";

const getUser = (id: number) => {
  return pool.one(sql.type(_zh_6c9cb1a3)`SELECT id, name FROM users WHERE id = ${id}`);
};

Read it bottom-up:

  • The real Zod schema is still constructed – once, at module load. __zcMkv installs the compiled methods onto it and returns it, so sql.type() receives a genuine Zod schema (identity, .shape, ._zod, Standard Schema all intact) that just happens to validate fast.
  • __fc_0 is the fast path: one boolean expression for the entire input. No _zod.run, no payload objects, no issues arrays. A valid row returns { success: true, data: input } – the input, by reference. Zero allocation.
  • __sw_2 and __zcFinD are the slow path: an invalid row returns { success: false } immediately, and the error-collecting walk runs lazily – only if you actually read .error.
  • It's plain generated code in your bundle – no new Function, no eval. CSP can't switch it off.

On that exact pattern, schema construction + per-row validation drops from ~16,700ns to ~14ns per call – construction amortizes to module load (hoisting), per-row validation rides the fast path (compilation).

And for validation alone, against Zod v4 (ops/s, higher is better):

Scenario Zod v4 zod-compiler vs Zod v4
medium object (valid) 2.4M 10.3M 4.3x
medium object (invalid) 80K 15.5M 194x
large object (100 keys) 19K 1.4M 73x

The invalid-input row is the eye-catcher, and it's exactly the failure-deferral paying off: a failed safeParse never materializes the error until you read .error. The throwing parse() API rides the same zero-allocation fast path (medium object 2.3M → 9.7M).

So both costs are gone – and your source code never changed. You wrote the schema once, inline, the way that read best at the call site. The hoister moved its construction to module load; the compiler turned it into a flat, monomorphic, allocation-free validator at build time.

You write code however you like. Your tooling reorganizes it to run optimally.