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
Continuing from #51 (comment) @harlanc
We don't need to put time-consuming I/O tasks on separate threads. If they are async, and we are running our entire application using an async runtime (like tokio), then all tasks will be non-blocking by default, and it will create new threads as necessary to handle parallel tasks.
I am uploading the files to S3 to make a VOD archive. Since the S3 bucket will likely have some caching functionality, the index.m3u8 file, once created, will remain frozen in state even as it is updated. That is why I also want a small chunk of the livestream available from the livestreaming server itself.
The text was updated successfully, but these errors were encountered:
Continuing from #51 (comment)
@harlanc
We don't need to put time-consuming I/O tasks on separate threads. If they are async, and we are running our entire application using an async runtime (like tokio), then all tasks will be non-blocking by default, and it will create new threads as necessary to handle parallel tasks.
I am uploading the files to S3 to make a VOD archive. Since the S3 bucket will likely have some caching functionality, the index.m3u8 file, once created, will remain frozen in state even as it is updated. That is why I also want a small chunk of the livestream available from the livestreaming server itself.
The text was updated successfully, but these errors were encountered: