Re: [Pharo-users] RAM-efficient alternative to ZnMultiPartFormDataEntity

2015-07-01 Thread Stephan Eggermont
On 01/07/15 23:07, Stephan Eggermont wrote: On 29/06/15 10:00, mikefilonov wrote: Hi Sven, Thank you for a prompt reply. I have in mind something similar to the followin nginx plugin: http://www.grid.net.ru/nginx/upload.en.html That is in http://www.squeaksource.com/fileupload I should rea

Re: [Pharo-users] RAM-efficient alternative to ZnMultiPartFormDataEntity

2015-07-01 Thread Stephan Eggermont
On 30/06/15 06:01, mikefilonov wrote: Thank you for the link. It is a useful example of how ajax upload can be implemented in Seaside. However, by looking at the code which works without nginx plugin I see the project does not change the mechanism of request reading, meaning if you upload 1Gb f

Re: [Pharo-users] RAM-efficient alternative to ZnMultiPartFormDataEntity

2015-07-01 Thread Stephan Eggermont
On 29/06/15 10:00, mikefilonov wrote: Hi Sven, Thank you for a prompt reply. I have in mind something similar to the followin nginx plugin: http://www.grid.net.ru/nginx/upload.en.html That is in http://www.squeaksource.com/fileupload Stephan

Re: [Pharo-users] RAM-efficient alternative to ZnMultiPartFormDataEntity

2015-06-30 Thread Paul DeBruicker
mikefilonov wrote > Thank you for the link. It is a useful example of how ajax upload can be > implemented in Seaside. > > However, by looking at the code which works without nginx plugin I see the > project does not change the mechanism of request reading, meaning if you > upload 1Gb file you st

Re: [Pharo-users] RAM-efficient alternative to ZnMultiPartFormDataEntity

2015-06-29 Thread mikefilonov
Thank you for the link. It is a useful example of how ajax upload can be implemented in Seaside. However, by looking at the code which works without nginx plugin I see the project does not change the mechanism of request reading, meaning if you upload 1Gb file you still need 1Gb of RAM to store W

Re: [Pharo-users] RAM-efficient alternative to ZnMultiPartFormDataEntity

2015-06-29 Thread Sven Van Caekenberghe
> On 29 Jun 2015, at 10:00, mikefilonov wrote: > > Hi Sven, > > Thank you for a prompt reply. > > I have in mind something similar to the followin nginx plugin: > http://www.grid.net.ru/nginx/upload.en.html > > We could dump entity body directly from socket stream to a file (buffered > reade

Re: [Pharo-users] RAM-efficient alternative to ZnMultiPartFormDataEntity

2015-06-29 Thread Paul DeBruicker
Have you seen: http://www.squeaksource.com/fileupload.html -- View this message in context: http://forum.world.st/RAM-efficient-alternative-to-ZnMultiPartFormDataEntity-tp4834528p4834666.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] RAM-efficient alternative to ZnMultiPartFormDataEntity

2015-06-29 Thread mikefilonov
Hi Sven, Thank you for a prompt reply. I have in mind something similar to the followin nginx plugin: http://www.grid.net.ru/nginx/upload.en.html We could dump entity body directly from socket stream to a file (buffered reader/writer) and add a header to Request so backend could just have a fil

Re: [Pharo-users] RAM-efficient alternative to ZnMultiPartFormDataEntity

2015-06-29 Thread Sven Van Caekenberghe
Hi Mike, > On 29 Jun 2015, at 04:43, mikefilonov wrote: > > Hello, > > I'm searching for an alternative implementation of ZnMultiPartFormDataEntity > which dumps it's parts to Filesystem as files saving RAM. > > Is there such an addon or it should be developed? No, there is no such a thing,

[Pharo-users] RAM-efficient alternative to ZnMultiPartFormDataEntity

2015-06-28 Thread mikefilonov
Hello, I'm searching for an alternative implementation of ZnMultiPartFormDataEntity which dumps it's parts to Filesystem as files saving RAM. Is there such an addon or it should be developed? Thanks, Mike -- View this message in context: http://forum.world.st/RAM-efficient-alternative-to-Z