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
{{ message }}
This repository has been archived by the owner on Jan 9, 2024. It is now read-only.
Add implementation of full state replica (i.e. loading all plain state in state cache at the startup, so that applying state changes will keep the full state local to Silkrpc) and lookup for state values just on such local state that must be coherent. If it is not coherent, it is an error and should be treated as such w/o falling back to accessing remote state.
This is required in order to support one specific scenario, which is very relevant for node operators:
Silkrpc gets deployed on a data center machine having much fast RAM (200/300 GB) even with slow HDD
only eth_call on LATEST block are forwarded to such instance by the load balancer
all the state lookups happen on local state in memory and hence are fast
This feature should be made available under a command-line option called --state_replica or something.
This feature does in fact also benefit from implementation of erigon_cacheCheck API.
The text was updated successfully, but these errors were encountered:
Add implementation of full state replica (i.e. loading all plain state in state cache at the startup, so that applying state changes will keep the full state local to Silkrpc) and lookup for state values just on such local state that must be coherent. If it is not coherent, it is an error and should be treated as such w/o falling back to accessing remote state.
This is required in order to support one specific scenario, which is very relevant for node operators:
eth_call
onLATEST
block are forwarded to such instance by the load balancerThis feature should be made available under a command-line option called
--state_replica
or something.This feature does in fact also benefit from implementation of
erigon_cacheCheck
API.The text was updated successfully, but these errors were encountered: