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
Teku does it with good results. Since the cache memory size is technically unbounded this strategy is great for preventing OOMs.
The head state should be kept separately with a strong reference.
Test how JS chooses to garbage collect multiple WeakRef. By age? By least used?
Test performance of WeakRef.unref() if it's called very often (attestation processing)
Consider adding a shufflings cache to mitigate the risk of a key state getting dropped
Don't regen for attestation verification if the head state already has the correct shuffling
Note: this is a huge en-devour with uncertain payoff. Teku has had issues in the past with this approach as all states disapears and the node death spirals
Teku does it with good results. Since the cache memory size is technically unbounded this strategy is great for preventing OOMs.
Note: this is a huge en-devour with uncertain payoff. Teku has had issues in the past with this approach as all states disapears and the node death spirals
The text was updated successfully, but these errors were encountered: