Welcome Guest Search | Active Topics | Sign In | Register

Is file uploaded using ajaxuploader control in chunks???? Options
Deepak Kalra
Posted: Thursday, November 18, 2010 5:05:44 AM
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
Code: C#
eo_support
Posted: Thursday, November 18, 2010 11:45:52 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,067
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!


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.