search for: lsapi_max_idle

Displaying 1 result from an estimated 1 matches for "lsapi_max_idle".

2006 Aug 04
1
Ruby LSAPI extension release 1.4
...1.4 release also added two environment variable to help: LSAPI_MAX_REQS=n n is the maximum number of requests that a child process can serve.Default value is 1000. Once that number is reached, the child process will exit automatically. This will help in case of any memory leaks in Rails. LSAPI_MAX_IDLE=n n is the maximum idle time in seconds that a child process will be waiting for a new request. Once it is reached, the child process will quit. Default value is 60. When n <= 0, the child process will wait indefinitely. This option helps getting rid of idle children processes. Ruby LSAPI exte...