Actions
Bug #13
closedRedmine performance
Status:
Closed
Priority:
Normal
Assignee:
-
Category:
Website
Target version:
-
Start date:
2012-07-16
Due date:
% Done:
0%
Estimated time:
Description
I'm seeing occasional delays in Redmine - it seems to be related to "passenger" killing off processes when they have been idle for a while. The next access then leads to a fairly slow startup.
Found a possible fix at stackoverflow.com - my own setup now has this file contents for /etc/apache2/mods-enabled/passenger.conf
- maybe it can speed up things on this site as well:
<IfModule mod_passenger.c>
PassengerRoot /usr
PassengerRuby /usr/bin/ruby
RailsSpawnMethod smart
PassengerMaxRequests 5000
PassengerStatThrottleRate 5
RailsAppSpawnerIdleTime 0
RailsFrameworkSpawnerIdleTime 0
PassengerPoolIdleTime 1000
</IfModule>
Actions