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
At the moment, Zebra reads the state via two different services:
a blocking StateService
a concurrent ReadStateService
Most read requests are able to be run concurrently, so we could move them to the ReadStateService. This allows us to move mutable chain state into the block commit task.
This should also improve performance.
The text was updated successfully, but these errors were encountered:
Motivation
At the moment, Zebra reads the state via two different services:
StateService
ReadStateService
Most read requests are able to be run concurrently, so we could move them to the
ReadStateService
. This allows us to move mutable chain state into the block commit task.This should also improve performance.
The text was updated successfully, but these errors were encountered: