Displaying 2 results from an estimated 2 matches for "visible_".
Did you mean:
visible
2010 May 06
5
Garbage collection outside of request cycle?
I''ve been analyzing our Unicorn-powered Rails app''s performance, and have found that garbage collection is a big factor in slow requests.
In the interest of avoiding those performance hits while handling requests, would it be possible to have a unicorn worker run garbage collection after handling a request and before waiting for the next one? Would this be a good idea?
Cheers,
2006 Jun 09
0
bizarre problem
Hello,
I have following code in a helper:
def custom_ajax(link, options)
target = "target_" + options[:target_id]
loading = "loading_" + options[:target_id]
visible = "visible_" + options[:target_id]
#options[:url] = {:inline => 1 }.merge(options[:url])
test = {:inline => 1 }.merge(options[:url])
link_to_remote(
link,
{
:update => target,
:loading => "loading(''" + loading + "'')"...