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
We're wasting work for the Tx version doing unnecessary bookkeeping in case there is a TxState, but there will never be one.
Meanwhile, the MutTxId version is also doing some minor bookkeeping for the case there won't be a TxState, but there always will be one.
In the case of Iter for TxId, this can just be TableScanIter, which is about 4x faster according to flamegraphs.
The text was updated successfully, but these errors were encountered:
We're wasting work for the
Tx
version doing unnecessary bookkeeping in case there is aTxState
, but there will never be one.Meanwhile, the
MutTxId
version is also doing some minor bookkeeping for the case there won't be aTxState
, but there always will be one.In the case of
Iter
forTxId
, this can just beTableScanIter
, which is about 4x faster according to flamegraphs.The text was updated successfully, but these errors were encountered: