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
Hello,
I wanted to ask if it would be possible to change the reference-counting pointer in actix_multipart::Multipart from Rc to Arc.
I would like to use actix_multipart::Multipart in a multithreaded context, but this requires Send. Unfortunately, Rc does not support Send.
Is the overhead for actix manageable? I know that actix is single threaded by default, but there are situations where you want to use a different runtime or need to spawn a task.
The text was updated successfully, but these errors were encountered:
Hello,
I wanted to ask if it would be possible to change the reference-counting pointer in actix_multipart::Multipart from Rc to Arc.
I would like to use actix_multipart::Multipart in a multithreaded context, but this requires Send. Unfortunately, Rc does not support Send.
Is the overhead for actix manageable? I know that actix is single threaded by default, but there are situations where you want to use a different runtime or need to spawn a task.
The text was updated successfully, but these errors were encountered: