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
I skimmed through the example and couldn't see that async is supported. Is there a need to add async support? What about the upstream TiKV, does it not support async too? Thank you.
The text was updated successfully, but these errors were encountered:
What do you mean "supporting async"? AFAIK RocksDB doesn't have true async interface, and rust-rocksdb is only a binding library, it cannot and will not implement an async runtime on its own.
If you are referring to the parallal read I/O features (as in this blogpost), then it's as simple as adding a new flag to ReadOptions. We don't currently have it but you are welcome to file a PR.
If you are referring to the parallal read I/O features (as in this blogpost), then it's as simple as adding a new flag to ReadOptions. We don't currently have it but you are welcome to file a PR.
Thank you! Let me take a stab at this. Will keep this issue open to track this feature.
I skimmed through the example and couldn't see that async is supported. Is there a need to add async support? What about the upstream TiKV, does it not support async too? Thank you.
The text was updated successfully, but these errors were encountered: