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
Given that the oplog is always added to at the back and drained from the front, it seems like Vec could be switched to a VecDeque. This should improve performance of writes. On my machine it improved the write ops/s for the benchmarks by 20%.
The text was updated successfully, but these errors were encountered:
Given that the oplog is always added to at the back and drained from the front, it seems like
Vec
could be switched to aVecDeque
. This should improve performance of writes. On my machine it improved the write ops/s for the benchmarks by 20%.The text was updated successfully, but these errors were encountered: