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
MemDB currently uses a Go map for storage, which means all ordered operations (such as range scans) are extremely slow - see e.g. tendermint/tendermint#4520.
By using an ordered data structure instead, e.g. a B-tree, these operations would be significantly faster.
The text was updated successfully, but these errors were encountered:
MemDB currently uses a Go map for storage, which means all ordered operations (such as range scans) are extremely slow - see e.g. tendermint/tendermint#4520.
By using an ordered data structure instead, e.g. a B-tree, these operations would be significantly faster.
The text was updated successfully, but these errors were encountered: