Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Кеширование flash с помощь ю nginx
29.09.2010 18:04, Igor Sysoev пишет:
> Почему бы не попробовать поставить патч на zfs для нормальной работы с
> sendfile, убрать md и сделать
> aio sendfile;
> ?
При условии nginx 0.8.11+ , FreeBSD 7+ и ZFS с патчем
эта конструкции будет медленнее
location /video/ {
sendfile on;
tcp_nopush on;
}
чем
location /video/ {
sendfile on;
tcp_nopush on;
aio sendfile;
}
?
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru
|