To support large file upload we need to segregate the file to different chunks and we will be sending each chunk in a single request to the server. Once they recieve the complete chunk, we will combine the chunk to get the actual file.
Following are the steps we followed to implement the feature.
- Since we are using jquery already, we make use of Jquery Chunk upload library
(https://github.com/blueimp/jQuery-File-Upload/wiki/Chunked-file-uploads) which is already being supported by
HyraxUploader
.