Description
rationale
When updating things in the store, we make potentially many changes to different atoms. our history atom is updated once per .put and once per .remove call, but if nobody reads the history during a transaction we may be creating more history entries than we need. They can be trivially squashed, but we don't currently know when it's safe to do so.
proposal
First let's define the notion of a 'fresh read': the first read to happen after an atom was last changed.
Now let's say we keep track of the lastFreshReadEpoch
for each atom and derivation.
On every fresh read (after the initial one?), before exposing the state or history of the derivable, we can squash down any history events since the lastFreshReadEpoch
.
impact
This would be a fairly minor perf improvement for very niche use cases. In some situations it may be a big perf win, but I'm struggling to think of what those cases may look like.