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 are currently implementing an in-memory engine feature in TiKV, and use skiplist as the underlying engine.
We need the iterator to be sendable among threads.
However, the current skiplist implementation carries the borrow of the skiplist, so the iterator can only be used in the thread creating it.
I implement a wrapper of the current skiplist, making it support creating iterators supporting the senario described above.
Would you mind reviewing it and seeing it is needed in crossbeam skiplist.
The text was updated successfully, but these errors were encountered:
We are currently implementing an in-memory engine feature in TiKV, and use skiplist as the underlying engine.
We need the iterator to be sendable among threads.
However, the current skiplist implementation carries the borrow of the skiplist, so the iterator can only be used in the thread creating it.
I implement a wrapper of the current skiplist, making it support creating iterators supporting the senario described above.
Would you mind reviewing it and seeing it is needed in crossbeam skiplist.
The text was updated successfully, but these errors were encountered: