Rank: Newbie Groups: Member
Joined: 11/18/2010 Posts: 1
|
Hi, I am using EO's Ajaxuploader control. As mentioned in the documentation that uploading file are not buffered in server's memory instead it is stored in temp folder than it is moved to final folder. Query : Is the file uploaded in chunks? if yes than where the file is divided in chunks? at client side of server side. Please let me know how this control gives better performance as compared to simple html file upload control? Thanks Deepak Kalra
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,201
|
Hi,
No. The uploader does not upload by chunks. However it reads by chunks. The client side push the whole file as a streams towards the server, our code on the server side reads a chunk, saves to temp file, then reads another chunk, then saves to the temp file and so on until the whole file is received. This way the uploader (the server side) always uses the same amount of memory no matter how big the file is. The client side pushing is done by the browser and that is part is already well optimized by the browser.
Thanks!
|