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
When using chunks, the final file is recomposed from chunk files.
This procedure takes a lot of time: takes as much as you were copying the file intro another file (on se same disk). Consider a copy of 10GB file, thats too much.
Having chunks separate makes it possible to upload them in parallel (so it won't be clear which one will arrive when). It is also crucial for long and important updates to be able to checksum each chunk to make sure that they are what they should be.
But the issue that you brought up here is definitely there, so we will probably end up with a configuration option for this.
Hello,
When using chunks, the final file is recomposed from chunk files.
This procedure takes a lot of time: takes as much as you were copying the file intro another file (on se same disk). Consider a copy of 10GB file, thats too much.
I've changed the class, using the example from here
https://github.com/moxiecode/plupload/blob/master/examples/upload.php
loose "write_file_to" and "write_chunks_to_file" functions
and leave only
thank you.
The text was updated successfully, but these errors were encountered: