MaxServers — define maximum number of spawned servers
The MaxServers directive specifies the maximum number
of Interchange server processes to keep running at any one time.
If more requests are pending, they will be queued within the defined capability of the Operating System (usually 5 pending requests) until the server's "usage count" drops.
Interchange 5.7.0:
Source: lib/Vend/Config.pm
Line 3887 (context shows lines 3887-3894)
sub parse_integer {
my($var, $value) = @_;
$value = hex($value) if $value =~ /^0x[\dA-Fa-f]+$/;
$value = oct($value) if $value =~ /^0[0-7]+$/;
config_error("The $var directive (now set to '$value') must be an integer\n")
unless $value =~ /^\d+$/;
$value;
}