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

推荐订阅源

有赞技术团队
有赞技术团队
Martin Fowler
Martin Fowler
N
Netflix TechBlog - Medium
WordPress大学
WordPress大学
罗磊的独立博客
H
Help Net Security
MongoDB | Blog
MongoDB | Blog
A
About on SuperTechFans
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
D
Docker
云风的 BLOG
云风的 BLOG
Microsoft Security Blog
Microsoft Security Blog
Blog — PlanetScale
Blog — PlanetScale
P
Proofpoint News Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
I
InfoQ
J
Java Code Geeks
博客园 - 聂微东
大猫的无限游戏
大猫的无限游戏
Engineering at Meta
Engineering at Meta
美团技术团队
小众软件
小众软件
Stack Overflow Blog
Stack Overflow Blog
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
A hyped memory paper dropped. We didn't adopt it — and th...
AsiaOstrich · 2026-06-15 · via DEV Community

AsiaOstrich

Our daily scout surfaces AI-tooling papers every morning. Most weeks the disciplined answer to a shiny new architecture is "no" — and why you say no is where the engineering judgment lives. Here's one worked example.

In May 2026, SAGE: A Self-Evolving Agentic Graph-Memory Engine (arXiv:2605.12061) made the rounds. The pitch is genuinely good: turn graph memory from a passive retrieval middleware into a dynamic long-term substrate, via two coupled components — a Memory Writer that incrementally builds the graph from interaction history, and a Memory Reader that retrieves and feeds back to the writer. That reader→writer feedback loop is the self-evolution engine. The paper reports strong multi-hop QA results, best after two self-evolution rounds.

The reflex that paper triggers in most teams: new SOTA memory architecture — let's rebuild on it.

We did the opposite. We opened our own design doc first.

We already had it

EngramGraph (our open-source code + knowledge-graph memory engine) already specifies a SAGE Evolution Loop:

  • a Writer that updates node confidence in the graph from feedback events — test pass/fail, human corrections, spec-status changes;
  • a Reader that returns high-confidence nodes first on query, and feeds that signal back to the Writer.

Line that up against the paper:

SAGE paper EngramGraph (existing design)
Memory Writer, incremental build Writer: feedback event → update node confidence / edges
Memory Reader, retrieve + feed back Reader: high-confidence-first → feeds back to Writer
Downstream feedback drives evolution Signals: test pass/fail, human fix, spec-status change

Architecturally isomorphic. Adopting the paper's architecture wholesale would have added roughly nothing — except a rewrite, a migration, and the risk that comes with both.

So we borrowed the rigor, not the architecture

A paper that matches your design is still valuable — just not as a blueprint. It's valuable as backing and method. We extracted exactly the three things our design was actually missing:

  1. Formalization — academic grounding for why a reader-writer feedback loop beats static-graph retrieval. Useful when you have to defend a design, not just ship it.
  2. A validation method — the paper's benchmark thinking inspired a code-graph memory-quality yardstick, which moves our loop from "designed" to "measurably verified." This is the real prize: a way to prove the thing works, not just assert it.
  3. Iteration-rounds design — the paper's "best after two self-evolution rounds" gave us a convergence-rounds definition our loop simply didn't have.

The honest caveat (this is the part that matters)

Here's the line we drew, in writing, before borrowing anything:

The paper's benchmarks are multi-hop QA, Natural Questions, LongMemEval, HaluMem — none of which is a code-graph scenario. The absolute numbers do not transfer.

So we explicitly refuse to port the paper's numbers into our domain. Every threshold in our borrow record is a relative comparison — confidence-weighted reader vs. our own static-MERGE baseline — not "the paper got 91.6, so we should too." Cargo-culting a benchmark from dialogue memory into a code graph is exactly how you manufacture fiction and call it a result.

We also wrote down what we deliberately did not take: the paper's agent-dialogue-memory scenario doesn't fit a code graph, so its scenario-specific mechanics stay on the shelf.

Why log a "no" at all

Because a tech radar isn't a list of things you adopted. It's a record of judgment. We filed SAGE as Trial, scoped to relative validation, with the non-adoptions named. Six months from now, that record tells us — and anyone reading — not just what we believed, but how carefully we believed it.

Half of staying current is reading everything. The other half is the discipline to take only the part that's actually load-bearing for your problem.

The decision record (DEC-078) and the design (XSPEC-237) are part of how we work in the open. EngramGraph itself is MIT, Node ≥ 22, no LLM required.

→ github.com/AsiaOstrich/EngramGraph