<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Edward Izgorodin</title>
    <description>The latest articles on DEV Community by Edward Izgorodin (@izgorodin).</description>
    <link>https://dev.to/izgorodin</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3989589%2F15cb8fb8-9785-496a-be83-65c3061529d2.jpeg</url>
      <title>DEV Community: Edward Izgorodin</title>
      <link>https://dev.to/izgorodin</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/izgorodin"/>
    <language>en</language>
    <item>
      <title>Agent memory is not a database</title>
      <dc:creator>Edward Izgorodin</dc:creator>
      <pubDate>Thu, 18 Jun 2026 20:49:55 +0000</pubDate>
      <link>https://dev.to/izgorodin/agent-memory-is-not-a-database-4m29</link>
      <guid>https://dev.to/izgorodin/agent-memory-is-not-a-database-4m29</guid>
      <description>&lt;p&gt;A paper from late May argues that agent memory is not a database. I think it is right.&lt;/p&gt;

&lt;p&gt;That sentence is the entire thesis. The rest of this post is what it means.&lt;/p&gt;

&lt;h2&gt;
  
  
  The four failure modes
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://arxiv.org/abs/2605.26252" rel="noopener noreferrer"&gt;Orogat and Mansour&lt;/a&gt; name four failure modes you hit when you treat memory like storage:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Unregulated growth&lt;/strong&gt; — facts pile up indefinitely with no shape control&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Missing semantic revision&lt;/strong&gt; — the system cannot update what a fact &lt;em&gt;means&lt;/em&gt; over time, only the row itself&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Capacity-driven forgetting&lt;/strong&gt; — you forget the wrong things first, because storage limits decide for you&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Read-only retrieval&lt;/strong&gt; — retrieval cannot reshape state; reading is decoupled from learning&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you have built a serious agent, all four are familiar. They are not edge cases. They are what happens when the abstraction is wrong.&lt;/p&gt;

&lt;h2&gt;
  
  
  GEM — four state-level operations
&lt;/h2&gt;

&lt;p&gt;The authors' model, &lt;strong&gt;Governed Evolving Memory&lt;/strong&gt; (GEM), replaces record-level CRUD with four state-level operations:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Ingestion&lt;/strong&gt; — incorporate a new observation into memory state&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Revision&lt;/strong&gt; — update what existing memory means, not just its contents&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Forgetting&lt;/strong&gt; — explicit, governed reduction of state&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Retrieval&lt;/strong&gt; — read-coupled-to-state, not detached lookup&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Notice what is missing. There is no insert. No update. No delete. The operations are about the &lt;em&gt;state&lt;/em&gt; of memory, not the &lt;em&gt;rows&lt;/em&gt; in it.&lt;/p&gt;

&lt;h2&gt;
  
  
  The strongest claim
&lt;/h2&gt;

&lt;p&gt;Then they make the strongest claim in the paper:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;No record-level system can satisfy the correctness conditions, whatever storage engine sits underneath.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That is the part worth sitting with.&lt;/p&gt;

&lt;p&gt;The claim is not that databases are slow. It is that the abstraction is wrong. Correctness lives in how memory state evolves over time, not in any single record.&lt;/p&gt;

&lt;p&gt;For anyone building long-running agents that are supposed to remember, this reframes the design question.&lt;/p&gt;

&lt;p&gt;Less: &lt;em&gt;"What is the right schema for memory rows?"&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;More: &lt;em&gt;"What is the right vocabulary for memory state evolution?"&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The honest gap
&lt;/h2&gt;

&lt;p&gt;The prototype runs on a property graph, and the authors are honest about the gap: state-level revision and forgetting are expensive to do properly. Native engine work is still ahead.&lt;/p&gt;

&lt;h2&gt;
  
  
  Worth reading
&lt;/h2&gt;

&lt;p&gt;A short paper. Worth reading if you build for agents that have to remember.&lt;/p&gt;

&lt;p&gt;📄 Paper: &lt;a href="https://arxiv.org/abs/2605.26252" rel="noopener noreferrer"&gt;arxiv.org/abs/2605.26252&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Also shared &lt;a href="https://www.linkedin.com/posts/izgorodin_aiagents-aimemory-llms-share-7470864140660801537-MoMO/" rel="noopener noreferrer"&gt;on LinkedIn&lt;/a&gt; — Edward Izgorodin, June 11, 2026.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Related research on AI agent memory at &lt;a href="https://mnemoverse.com/docs/library/" rel="noopener noreferrer"&gt;mnemoverse.com/docs/library&lt;/a&gt;. I build &lt;a href="https://mnemoverse.com" rel="noopener noreferrer"&gt;Mnemoverse&lt;/a&gt; — open-source persistent memory for AI agents.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>memory</category>
      <category>opensource</category>
      <category>agents</category>
    </item>
  </channel>
</rss>
