Posted on 2009年2月10日 Posted by ちゅう 2件のコメント Posted in Development Tags: Linux, Rails Rails&Lighttpdの環境で動画とか大容量ファイルを高速にダウンロードさせるとき、Rails の send_file を使わずに Lighttpd の X-sendfile という仕組みを使うと良いようです。 lighttpd-1.4.15 で試しました。 通常のsend_file send_file '/tmp/movie.wmv' Lighttpdを使ったx-sendfile # X_SENDFILE する path = '/tmp/movie.wmv' response.headers['Content-Type'] = "application/force-download" response.headers