vote up 3 vote down star
4

I'm making a simple download service so a user can download all his images from out site. To do that i just zip everything to the http stream.

However it seems everything is stored in memory, and the data isn't sent til zip file is complete and the output closed. I want the service to start sending at once, and not use too much memory.

public void ProcessRequest(HttpContext context)
{
    List<string> fileNames = GetFileNames();
    context.Response.ContentType = "application/x-zip-compressed";
    context.Response.AppendHeader("content-disposition", "attachment; filename=files.zip");
    context.Response.ContentEncoding = Encoding.Default;
    context.Response.Charset = "";

    byte[] buffer = new byte[1024 * 8];

    using (ICSharpCode.SharpZipLib.Zip.ZipOutputStream zipOutput = new ICSharpCode.SharpZipLib.Zip.ZipOutputStream(context.Response.OutputStream))
    {
        foreach (string fileName in fileNames)
        {
            ICSharpCode.SharpZipLib.Zip.ZipEntry zipEntry = new ICSharpCode.SharpZipLib.Zip.ZipEntry(fileName);
            zipOutput.PutNextEntry(zipEntry);
            using (var fread = System.IO.File.OpenRead(fileName))
            {
                ICSharpCode.SharpZipLib.Core.StreamUtils.Copy(fread, zipOutput, buffer);
            }
        }
        zipOutput.Finish();
    }

    context.Response.Flush();
    context.Response.End();
}

I can see the the worker process memory growing while it makes the file, and then releases the memory when its done sending. How do i do this without using too much memory?

flag

69% accept rate

3 Answers

vote up 6 vote down check

Disable response buffering with context.Response.BufferOutput = false; and remove the Flush call from the end of your code.

link|flag
+1. Response.End is harsh and unnecessary also. – AnthonyWJones Mar 9 at 13:30
There are other ways of handling very large files, I believe, allowing separate requests to get separate chunks of the response. I'd zip the file onto disk to be able to serve it in multiple requests without having to rezip each time. – Jon Skeet Apr 16 at 16:38
vote up 0 vote down

use Response.BufferOutput = false; at start of ProcessRequest and flush response after each file.

link|flag
1  
The Flush doesn't do anything useful when buffering is off. – AnthonyWJones Mar 9 at 13:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.