=head1 NAME
XAO::PreLoad - helps apache pre-load most popular XAO modules
=head1 SYNOPSIS
In the main httpd.conf, B<not in virtual host section>:
PerlModule XAO::PreLoad
=head1 DESCRIPTION
The module does not provide any useful functionality at this point, it
simply pre-loads most of XAO modules.
The idea of pre-loading is to let mod_perl compile modules before any
childs are forked off therefore letting all childs reduce startup time
and reduce memory usage (because most of the pre-compiled code stays
shared in forked childs).
=cut
###############################################################################
package XAO::PreLoad;
use strict;
#
#
#
#
our $VERSION='2.001';
###############################################################################
1;
__END__
=head1 EXPORTS
Nothing.
=head1 AUTHOR
Copyright (c) 2005 Andrew Maltsev
Copyright (c) 2001-2004 Andrew Maltsev, XAO Inc.
<am@ejelta.com> -- http://ejelta.com/xao/
=head1 SEE ALSO
Recommended reading:
L<Apache::XAO>,
L<Apache>,
L<XAO::Web>.