Thank you for your answer. > What version of ruby are you using? If possible, you may want to > consider > using http://www.rubyenterpriseedition.com.
I use Ruby 1.8.7 . I will inquire about Ruby Enterprise Edition. > There are Passenger configuration variables you can use to adjust how > long > processes stay alive to continue serving requests, how many requests > they > serve, the max number of processes, etc. > > http://www.modrails.com/documentation/Users%20guide%20Apache.html#_resource_control_and_optimization_options This is my actual Passenger config : <IfModule mpm_worker_module> StartServers 4 MinSpareThreads 25 MaxSpareThreads 100 ThreadLimit 64 ThreadsPerChild 25 MaxClients 300 MaxRequestsPerChild 900 </IfModule> -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

