0
@@ -602,7 +602,7 @@ The default value is '0'.
0
The maximum number of seconds that a Ruby on Rails or Rack application instance
0
may be idle. That is, if an application instance hasn't done anything after
0
the given number of seconds, then it will be shutdown in order to conserve
0
Decreasing this value means that applications will have to be spawned
0
more often. Since spawning is a relatively slow operation, some visitors may
0
@@ -614,6 +614,12 @@ Rails/Rack web page. We recommend a value of `2 * x`, where `x` is the average
0
number of seconds that a visitor spends on a single Rails/Rack web page. But your
0
+When this value is set to 0, application instances will not be shutdown unless
0
+it's really needed, i.e. passenger is out of workers for a given application and
0
+one of the given inactive app instance needs to make place for another app instance,
0
+effectively removing the spawn delay.
0
+This option value is only recommended if you are a son of RAM.
0
This option may only occur once, in the global server configuration.
0
The default value is '300'.
0
@@ -1216,8 +1222,8 @@ active:: The number of application instances that are currently processing
0
requests. This value is always less than or equal to 'count'.
0
inactive:: The number of application instances that are currently *not* processing
0
requests, i.e. are idle. Idle application instances will be shutdown after a while,
0
-as can be specified with <<PassengerPoolIdleTime,PassengerPoolIdleTime>>. The value of 'inactive'
0
-equals `count - active`.
0
+as can be specified with <<PassengerPoolIdleTime,PassengerPoolIdleTime>> unless this
0
+value is set to 0. The value of 'inactive' equals `count - active`.
0
The 'applications' section shows each application instance, which directory it belongs
0
to. The 'sessions' field shows how many HTTP client are currently being processed by
Comments
No one has commented yet.