9 messages in ru.sysoev.nginxRe: avoiding disk cache on proxy ?
FromSent OnAttachments
Jonathan VanascoJan 15, 2007 1:31 pm 
Ezra ZygmuntowiczJan 15, 2007 6:43 pm 
Jonathan VanascoJan 15, 2007 11:38 pm 
Igor SysoevJan 16, 2007 12:09 pm 
Igor SysoevJan 16, 2007 12:11 pm 
Igor SysoevJan 16, 2007 12:17 pm 
Jonathan VanascoJan 16, 2007 12:44 pm 
Igor SysoevJan 16, 2007 12:58 pm 
Aleksandar LazicJan 16, 2007 1:41 pm 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Re: avoiding disk cache on proxy ?Actions...
From:Igor Sysoev (is-G@public.gmane.org)
Date:Jan 16, 2007 12:09:40 pm
List:ru.sysoev.nginx

On Mon, 15 Jan 2007, Jonathan Vanasco wrote:

nginx caches some of my pages to disk during proxy requests because it is too large

i'd like to avoid this as much as possible, as the disk io is annoying.

can anyone recommend some settings for proxy_buffering proxy_buffer_size proxy_buffers

i'd like to avoid writing to disk entirely. i'd be fine with dedicate 20mb or so to this if needed.

You may use

proxy_buffering off;

or

proxy_max_temp_file_size 0;

But backend will be bound up with client during whole download time. If nginx and backend are on the same host, it's better to use the "X-Accel-Redirect" header.