Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 963 Bytes

README.md

File metadata and controls

28 lines (20 loc) · 963 Bytes

Large File Uploader

This is a project to make a simple Go uploader that can deal with the largest files, by using multipart mime protocol correctly (almost nothing does). This means that buffering in memory is bounded.

It is possible to have a hybrid that keeps a reasonable amount of data in memory without ever writing it to disk, and flushes to disk when a session is going to begin to use unfair amounts of memory

Browser:

TODO:

Because this is might be an auxillary service to a different service, we should probably behave like Amazon and require signed URLs, or signed cookies that give permission to do things such as perform PUT/GET operations within a short timeframe.