Looks like switchyard is not (very) maintained. Anyone know of any good alternatives? I suppose I could even use tokio for compute-bound tasks...
#async runtime like switchyard but maintained
4 messages · Page 1 of 1 (latest)
@whole glen have you seen Rayon? https://github.com/rayon-rs/rayon
I am using rayon for core of my application but thinking of having something that can handle channels/etc without blocking for long running tasks. also I am just going to use tokio. I benched compared to switchyard and it wasn't any worse really.
plus get advantage of the whoel async eco system: reqwest/ async tokio files/etc if need to use it for long running task