LongMemEval: What the Benchmark Tests and How to Read Its Results
Understand LongMemEval-S and M, distinguish retrieval from answer quality, and identify the production tests a benchmark cannot replace.

LongMemEval evaluates whether a chat assistant can answer questions using information from a long interaction history. Both LongMemEval-S and LongMemEval-M contain multiple sessions. Their main distinction is the amount of history, not whether the task involves one session or many.
Use the benchmark to investigate memory quality, then add tests for your application's permissions, deletion behavior, processing delays, and operating costs. A benchmark result is evidence about a particular evaluation setup, not a production reliability guarantee.
What the dataset contains
The official LongMemEval repository describes 500 evaluation questions covering information extraction, multi-session reasoning, knowledge updates, temporal reasoning, and abstention.
| Variant | History described in the original release | Purpose |
|---|---|---|
| LongMemEval-S | About 40 sessions and roughly 115,000 tokens using the documented tokenizer | Evaluate recall and reasoning over a shorter multi-session history |
| LongMemEval-M | Roughly 500 sessions per history | Increase the amount of history the system must handle |
| Oracle | Evidence sessions only | Examine answering behavior when the relevant sessions are supplied |
The project has released cleaned data and newer benchmark work. Record the exact dataset revision used in a run; the original release names alone are not enough to reproduce every later result.
LongMemEval-S vs M: which should you run?
Start with S when you need a smaller multi-session baseline that is easier to inspect and repeat. Use M to investigate behavior as the amount of historical context grows. Use the oracle setting to examine answering with the evidence sessions already supplied. Keep the dataset revision, question IDs, model, and retrieval settings in the result record.
A higher score on S does not establish a higher score on M. Nor does an oracle result describe retrieval quality. The MemoryBench walkthrough explains the evaluation workflow; the debugging guide helps determine whether a failed answer lost its evidence before or after retrieval.
Do not confuse question categories with history size
A single-session question can require evidence from one session buried in a much larger history. A multi-session question requires evidence from more than one session. These categories are independent of choosing the S or M dataset.
This distinction affects debugging. If a system fails a single-session question, it may have lost the relevant record among distractors. If it retrieves every necessary record for a multi-session question but still fails, the problem may be synthesis or context assembly.
A larger history is a useful stress test, but it is not automatically the best first experiment. Start with a reproducible baseline, inspect failures, and increase the history scale when that answers a concrete engineering question.
Keep retrieval and answering metrics separate
Retrieval recall asks whether the required evidence was found. Answer accuracy asks whether the final response is correct under the evaluation rubric. They describe different stages.
For example, a retriever might surface both an old address and its correction. Finding both records can satisfy an evidence-retrieval check while the final answer still chooses the wrong address. Conversely, a model might guess a correct answer without reliable evidence. Inspect the retrieved context as well as the score.
When reporting a result, include:
- Dataset revision and selected question IDs.
- Memory provider and relevant configuration.
- Answering model, judge model, and prompts.
- Retrieval budget and any aggregation or reranking step.
- Failures, retries, and the scoring denominator.
- Context size, retrieval latency, and end-to-end runtime as separate measurements.
Changing any of these can change the result. A vendor's published score should not be ranked against another score as though the setups were identical unless that equivalence has been established.
What a knowledge-update result tells you
The benchmark includes histories in which facts change. It can therefore expose failures to use updated information. That does not establish how a deployed system behaves during concurrent writes, permission changes, deletion, or a delayed indexing job.
For a product test, ask immediately after a correction, again after processing completes, and after a cache refresh. Distinguish stale retrieval from a processing delay that the application has chosen to tolerate.
Add the tests your product needs
Build a companion suite with at least one case for each critical behavior: a returning user, an explicit correction, an unanswered question, a forbidden tenant, and a deleted source. Add your domain's high-cost mistakes, such as repeating a failed troubleshooting step or treating an old quote as a current price.
Measure performance under the concurrency and data sizes you expect to operate. A mean search latency does not describe tail latency, and search latency alone does not describe how long a customer waits for an answer.
Supermemory publishes its research and an open MemoryBench harness. Use the reported configuration when reproducing a result, then run the application-specific cases. The useful decision is whether the system meets your requirements with understandable failure modes—not whether one headline percentage is larger.
Ready to inspect the evidence yourself? Open MemoryBench, follow its documented evaluation setup, and reproduce a supported configuration before adding your own application cases. Keep the run settings with the results so the comparison can be repeated.