Header

  1. View current page

    딥뿔이 자라나는 노트

Profile_image?t=1225424611&type=big
나를 바꾼 똑똑한 생활 습관, 스프링노트 - 여러분도 지금 시작해보세요!
47

Erubis는 레일스 성능에 도움이 될까?

      # Method to check whether template compilation is necessary.
      # The template will be compiled if the inline template or file has not been compiled yet,
      # if local_assigns has a new key, which isn't supported by the compiled code yet,
      # or if the file has changed on disk and checking file mods hasn't been disabled.

 

ActionView::Base 구현 일부

 

  1. def compile_template?(template, file_name, local_assigns)
  2.   if compile_time = @@compile_time[render_symbol]
  3.     template_changed_since?(file_name, compile_time)
  4.   else
  5.     true
  6.   end
    end

History

Last edited on 07/04/2007 20:55 by deepblue

Comments (0)

You must log in to leave a comment. Please sign in.