In event sourcing, your current state is a replay away.Key practices: - Snapshotting to reduce read time - Append-only logs and immutability - Using projections for read-side optimizationState = sum of events, not a snapshot in time.