-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Usage with tokio #6
Comments
We went with It would probably be a pretty major refactor to support Tokio. We use Tokio also doesn't have an MPMC + FIFO channel which We also want to use |
I agree that it's not desirable to have a large amount of feature gated code. Perhaps we can list the specific features you require from |
Specifically we require the MPMC channels for our Note that I believe we're okay with accepting a PR here but at the same time I know that I'm not going to spend any time on this due to a massive list of other things I'd like to see SQLx have that I find more interesting to work on. For anyone interested though, I would expect two cargo feature flags, @abonander Not sure the right way to word a label for this issue. I added [wontfix] and [help wanted] for now. |
@mehcode the mpmc issue is easily fixed by using crossbeam, it has mpmc channels that are stdlib API-compatible and have better performance than std::mpsc to boot. |
We want specifically async MPMC channels; the one in Crossbeam is a blocking channel. |
Ah. I'm not aware of any channels (MPSC or otherwise) that are built on top of async infrastructure. |
This will be in 0.2.0 |
Oh wow, cool! I'll check it out asap! |
Well that was pretty crazy turnaround, nice work! |
tldr., after some internal refactoring (that was not done for this) it ended up being a simple change at the end so I just went and did it. |
First off, the project looks awesome! I'm currently using
mysql_async
withtokio
and not completely satisfied. I'd love to give this crate a try, but I saw you're usingasync_std
. My question is: how much do you rely on it?I would like to keep everything running on a single threadpool which I can control. I'm using other libraries bound to
tokio
, so I can't switch over. Would it be possible to decouple fromasync_std
or perhaps provide some feature flags to supporttokio
aswell? Again, it depends on what functionality you're using it for.The text was updated successfully, but these errors were encountered: