Skip to content

Commit

Permalink
Document RailsMaxInstancesPerApp.
Browse files Browse the repository at this point in the history
  • Loading branch information
FooBarWidget committed May 15, 2008
1 parent 828e920 commit 2a8d05c
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions doc/Users guide.txt
Expand Up @@ -381,6 +381,7 @@ render <<reducing_memory_usage,Ruby Enterprise Edition's memory reduction techno
This option may occur once, in the global server configuration or in a virtual host
configuration block. The default value is 'smart'.

[[RailsMaxPoolSize]]
=== RailsMaxPoolSize <integer> ===
The maximum number of Ruby on Rails application instances that may
be simultaneously active. A larger number results in higher memory usage,
Expand Down Expand Up @@ -424,6 +425,20 @@ mileage may vary.
This option may only occur once, in the global server configuration.
The default value is '120'.

=== RailsMaxInstancesPerApp <integer> ===
The maximum number of Ruby on Rails application instances that may
be simultaneously active for a single application. This helps to make
sure that a single application will not occupy all available slots in
the application pool.

This value must be less than <<RailsMaxPoolSize,RailsMaxPoolSize>>. A value of 0
means that there is no limit placed on the number of instances a single application
may use, i.e. only the global limit of <<RailsMaxPoolSize,RailsMaxPoolSize>>
will be enforced.

This option may only occur once, in the global server configuration.
The default value is '0'.

[[RailsUserSwitching]]
=== RailsUserSwitching <on|off> ===
Whether to enable <<user_switching,user switching support>>.
Expand Down

1 comment on commit 2a8d05c

@DAddYE
Copy link

@DAddYE DAddYE commented on 2a8d05c May 16, 2008

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Very very thanks!!!!

I apreciate also vhost default user.

Please sign in to comment.