• 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31

sinatra で画像ファイルを扱うためのメモ

下策:直接アクションにベタ書き

[ユースケース] この画像1個だけでいいんです

   1  get '/logo.png' do
   2    content_type :png
   3    send_file "logo.png"
   4  end

中策:パラメータとブロック引数で処理

[ユースケース] images/* に画像が多くてアクション列挙してられない

   1  get '/images/:file.:ext' do |file, ext|
   2    content_type ext
   3    send_file "images/#{file}.#{ext}"
   4  end

上策:Rackに任せる

[ユースケース] 速度、効率的にフロントで捌きたい

   1  use Rack::Static, :urls => ["/images"], :root => "public"

これで Rails/Merb でおなじみの public/images/* を捌く事ができる

posted by Png maiha on Tue 28 Jul 2009 at 18:37

Comments:

or Preview
Social Bookmarks
  • Delicious
  • B_entry1565
  • Clip_16_12_w
Services from s21g
twpro(ツイプロ)
Twitterプロフィールを快適検索
地価2009
土地の値段を調べてみよう
MyRestaurant
自分だけのレストラン手帳
Formula
ブログに数式を埋め込める数式コミュニティ