Name

StartServers — specify the number of Interchange servers to prefork when running in PreFork mode

SYNOPSIS

count

DESCRIPTION

The directive specifies the number of Interchange servers that should be preforked when Interchange is run in PreFork mode.

DIRECTIVE TYPE AND DEFAULT VALUE

Global directive

EXAMPLES

Example: Defining StartServers

StartServers 10

NOTES

For an introduction to Interchange run modes and practical implications, please see the ic run mode glossary entry.

AVAILABILITY

StartServers is available in Interchange versions:

4.6.0-5.9.0 (git-head)

SOURCE

Interchange 5.9.0:

Source: lib/Vend/Config.pm
Line 453

['StartServers',      'integer',          0],

Source: lib/Vend/Config.pm
Line 3992 (context shows lines 3992-3999)

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;
}

AUTHORS

Interchange Development Group

SEE ALSO

SOAP_StartServers(7ic), PreForkSingleFork(7ic), PreFork(7ic)

DocBook! Interchange!