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
The bootstrap is querying block events one by one, we can improve the speed by utilising the goroutines by doing multiple queries at the same time
same db query being called multiple times within a single event execution. e.g GetBTCDelegationByStakingTxHash being called inside validateBTCDelegationInclusionProofReceivedEvent which then being called again
by processBTCDelegationInclusionProofReceivedEvent. a recommendation is doing request level caching. i.e cache once per execution
The text was updated successfully, but these errors were encountered:
GetBTCDelegationByStakingTxHash
being called insidevalidateBTCDelegationInclusionProofReceivedEvent
which then being called againby
processBTCDelegationInclusionProofReceivedEvent
. a recommendation is doing request level caching. i.e cache once per executionThe text was updated successfully, but these errors were encountered: