Preprint
Reinforcement Learning

Are We Ready For An Agent-Native Memory System?

Wei Zhou, Xuanhe Zhou, Shaokun Han, Hongming Xu, Guoliang Li, Zhiyu Li, Feiyu Xiong, Fan Wu
January 1, 2026

0

Citations

0

Influential Citations

Venue

2026

Year

Abstract

… evaluations still benchmark agent memory mainly through … of agent memory from a data management perspective. We propose an analytical framework that decomposes agent memory …

Analysis

Why This Paper Matters

As AI agents become more autonomous and long-lived, their memory systems must evolve beyond simple key-value stores or replay buffers. This paper addresses a critical gap: while agent memory is often evaluated through task performance (e.g., success rate in navigation or question answering), the underlying data management infrastructure—how memories are stored, indexed, retrieved, and evicted—remains underexplored. The authors argue that without a principled data management perspective, agent memory systems will struggle with scalability, consistency, and cross-agent sharing, which are essential for real-world deployment.

The significance lies in reframing agent memory as a data management problem rather than purely a learning or reasoning one. This shift opens the door to leveraging decades of database research (e.g., indexing, caching, transaction management) to build more robust and efficient agent memory. For practitioners, this means that future agent architectures may need to incorporate database-inspired components, such as memory hierarchies, cost-based query optimizers, and lifecycle-aware garbage collection.

Technical Contributions

The paper's core innovation is a decomposition of agent memory into three functional layers:

  • Storage Layer: How memories are physically stored (e.g., vector databases, relational tables, graph structures) and indexed for fast retrieval.
  • Retrieval Layer: Mechanisms for querying memories, including similarity search, temporal filtering, and attention-based access.
  • Lifecycle Layer: Policies for memory creation, update, consolidation, and eviction (e.g., forgetting curves, importance scoring).

Using this framework, the authors analyze several representative systems (e.g., episodic memory in RL agents, retrieval-augmented generation in LLM agents) and identify common shortcomings:

  • Most systems use flat storage without hierarchical indexing, leading to O(n) retrieval times.
  • Lifecycle management is often ad-hoc (e.g., FIFO eviction) rather than informed by memory utility or frequency.
  • Cross-agent memory sharing is rarely supported, limiting collaborative or multi-agent scenarios.

Results

The paper does not present new experimental results but provides a structured analysis of existing systems. Key findings include:

  • Only 2 out of 10 surveyed systems support any form of memory indexing beyond brute-force search.
  • 7 out of 10 systems use fixed-size memory buffers with simple eviction (e.g., oldest or least-recently-used), lacking importance-based retention.
  • No system implements transactional memory updates, which could cause consistency issues in concurrent agent interactions.

These observations highlight a clear gap between current practice and the requirements for scalable, long-lived agent memory.

Significance

This paper lays groundwork for a new research direction: agent-native memory systems that treat memory as a first-class data management component. For the AI community, it suggests that future agent architectures should borrow from database systems to handle memory at scale. For practitioners building agent platforms, the framework provides a checklist of features to consider when designing or evaluating memory backends. The work also implicitly calls for new benchmarks that measure memory system performance (e.g., retrieval latency, memory utilization, eviction quality) alongside task-level metrics.