Terms  /  Measurement  /  Recall Cost Ratio
09 · Measurement

Recall Cost Ratio

The cost of retrieving stored context vs. the cost of re-generating it from scratch.

Recall Cost Ratio determines whether your memory system is actually saving money. Storing and retrieving context has a cost: storage infrastructure, retrieval computation, and the tokens used to inject recalled context into the prompt. If that cost exceeds the cost of simply re-establishing the context from scratch (by re-explaining to the model), the memory system is a net negative. A good Recall Cost Ratio means retrieval is significantly cheaper than regeneration — usually by an order of magnitude or more.

Example
A team's memory system stores project context and retrieves it at the start of each session. Cost of retrieval: ~500 tokens for the retrieval query + 2,000 tokens of recalled context = 2,500 tokens. Cost of re-onboarding without memory: ~6,000 tokens of re-explanation to reach the same level of project understanding. Recall Cost Ratio: 2,500/6,000 = 0.42. The memory system is 58% cheaper than starting from scratch. If the ratio were above 1.0, the memory system would be more expensive than re-onboarding — a sign to optimize or remove it.

More in Measurement