You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When tx execution is conflicted in block-stm, it get retried, in each retry, it runs exact same logic, but we can actually cache some stateless computations, signature verification is the most significant one.
Problem Definition
We can't cache it in normal transient stores, because they are cleared for each tx execution for deterministic execution results.
Proposed Feature
Add a field to Context just for this.
The text was updated successfully, but these errors were encountered:
Summary
When tx execution is conflicted in block-stm, it get retried, in each retry, it runs exact same logic, but we can actually cache some stateless computations, signature verification is the most significant one.
Problem Definition
We can't cache it in normal transient stores, because they are cleared for each tx execution for deterministic execution results.
Proposed Feature
Add a field to
Context
just for this.The text was updated successfully, but these errors were encountered: