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
{{ message }}
This repository has been archived by the owner on May 22, 2021. It is now read-only.
It would be better if Chunked Upload strategy is used instead of WebSockets streaming.
WebSocket approach currently used has many problems.
Chunked Upload strategy uses raw HTTP protocol it benefits from future advancements in underlying protocol (HTTP/3 which has extremely better data streaming). Unlike WebSocket which is tied to the TCP protocol.
As mentioned in #551 , tus.io is a great open protocol, it would be better if it's Node server implementation gets revived, rather than reinventing the wheel by creating a new server implementation.
Or, Go implementation tusd can be used if that's possible?
Number users of Firefox Send has increased than it had in 2017 (when that ticket was opened) it would be better if it's functionality gets improved now.
The text was updated successfully, but these errors were encountered:
I am happy to assist you with questions around the tus protocol and its implementations. We unfortunately do not have the resources to work on tus-node-server but we are always open for contributions. In the meantime, tusd has been battle-tested in production for years, so it's very solid and our recommendation for a tus server.
are the maintainers okay about changing the backend to Golang from Node?
That's not necessary, you can run tusd as a standalone binary, next to your main application process. tusd can then be configured to notify your main application about completed uploads (and other events) using HTTP requests. It is possible to use tusd as a dependency inside your Go application but it's not necessary.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
It would be better if Chunked Upload strategy is used instead of WebSockets streaming.
WebSocket approach currently used has many problems.
Chunked Upload strategy uses raw HTTP protocol it benefits from future advancements in underlying protocol (HTTP/3 which has extremely better data streaming). Unlike WebSocket which is tied to the TCP protocol.
As mentioned in #551 , tus.io is a great open protocol, it would be better if it's Node server implementation gets revived, rather than reinventing the wheel by creating a new server implementation.
Or, Go implementation tusd can be used if that's possible?
Number users of Firefox Send has increased than it had in 2017 (when that ticket was opened) it would be better if it's functionality gets improved now.
The text was updated successfully, but these errors were encountered: