I think I'm seeing a memory leak when using prepend_view_path.
When I use the instance method in a controller:
def setup_view_paths
prepend_view_path(magazine_views)
end
I get a lot of leaked strings (and other objects in the same area)
Leaked 1384 STRING objects at: /Users/r38y/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.2/lib/action_view/template.rb:299
Leaked 692 DATA objects at: /Users/r38y/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.2/lib/action_view/template.rb:299
Leaked 616 ARRAY objects at: /Users/r38y/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.2/lib/action_view/template.rb:299
Leaked 396 ARRAY objects at: /Users/r38y/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.2/lib/action_view/template.rb:300
Leaked 395 DATA objects at: /Users/r38y/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.2/lib/action_view/template.rb:106
Leaked 235 STRING objects at: /Users/r38y/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.2/lib/action_view/template.rb:332
Leaked 197 NODE objects at: /Users/r38y/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.0.2/lib/action_view/template.rb:299
That look like _app_views_site_overrides_j____com_posts_shared__featured_html_erb___3233500999093705389_70234272758740.
When I use the class method in an initializer:
ActionController::Base.prepend_view_path('app/views/site_overrides/j-14.com')
I don't leak anything in template.rb.
I need to use the instance method because I need to set things up for themes.
I've seen this in production and development.
This is how I'm getting that information: https://gist.github.com/r38y/02f4378a19f9064d2da2
I've been in the Rails source code for a couple days and cannot figure out why it is leaking 😦. Any ideas would would a ton. Thank you!
I think I'm seeing a memory leak when using
prepend_view_path.When I use the instance method in a controller:
I get a lot of leaked strings (and other objects in the same area)
That look like
_app_views_site_overrides_j____com_posts_shared__featured_html_erb___3233500999093705389_70234272758740.When I use the class method in an initializer:
I don't leak anything in template.rb.
I need to use the instance method because I need to set things up for themes.
I've seen this in production and development.
This is how I'm getting that information: https://gist.github.com/r38y/02f4378a19f9064d2da2
I've been in the Rails source code for a couple days and cannot figure out why it is leaking 😦. Any ideas would would a ton. Thank you!