]] Per Buer | Oliver Oli wrote: | > On Fri, Jan 2, 2009 at 6:03 PM, Per Buer <[email protected]> wrote: | > | >> Neither. Both passing and caching an object will fetch the whole object | >> into memory before passing it on to the client. "pipe" will do what you | >> want, but you probably don't want that as pipe has other side effects. | > | > What kind of side effects? | | pipe shuffles bytes back and forth. If pipelining is used another HTTP | request might show up on the same connection - and you want even notice.
This can be worked around by having set bereq.http.Connection = "close"; in vcl_pipe, at the cost of not having keepalives for those requests. -- Tollef Fog Heen Redpill Linpro -- Changing the game! t: +47 21 54 41 73 _______________________________________________ varnish-misc mailing list [email protected] http://projects.linpro.no/mailman/listinfo/varnish-misc
