Name

MoreDB — enable saving of search paging files into users' DBI sessions

SYNOPSIS

No | Yes

DESCRIPTION

This directive enables saving of search paging files into users' sessions.

This eliminates the need to have a ScratchDir directory between all Interchange server nodes.

This directive can only be used with DBI (database) sessions; trying to use it with non-database sessions will cause errors.

DIRECTIVE TYPE AND DEFAULT VALUE

Catalog directive

EXAMPLES

Example: Enabling MoreDB

SessionType DBI
SessionDB session

MoreDB Yes

NOTES

AVAILABILITY

MoreDB is available in Interchange versions:

4.6.0-5.9.0 (git-head)

SOURCE

Interchange 5.9.0:

Source: lib/Vend/Config.pm
Line 590

['MoreDB',       'yesno',          'No'],

Source: lib/Vend/Config.pm
Line 5434 (context shows lines 5434-5446)

sub parse_yesno {
my($var, $value) = @_;
$_ = $value;
if (m/^y/i || m/^t/i || m/^1/ || m/^on/i) {
  return 1;
}
elsif (m/^n/i || m/^f/i || m/^0/ || m/^of/i) {
  return 0;
}
else {
  config_error("Use 'yes' or 'no' for the $var directive\n");
}
}

AUTHORS

Mike Heins

SEE ALSO

SessionDB(7ic), SessionType(7ic)

DocBook! Interchange!