home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / xampp / xampp-perl-addon-1.4.9-installer.exe / ApacheCommon.pm < prev    next >
Encoding:
Perl POD Document  |  2003-05-06  |  701 b   |  24 lines

  1. package Apache::ASP::ApacheCommon;
  2.  
  3. # For mod_perl 2.0 in particular, just load all the modules
  4. # Loading only the modules needed in particular only saved between 500K-2M
  5. # during benchmarking
  6. # eval { &ModPerl::MethodLookup::preload_all_modules(); };
  7.     
  8. # here is the list of modules from mod_perl 2.0 that I would need to load
  9. # explicitly for all the Apache methods needed.  This is by no means definitive
  10. # but what I found during testing.
  11. # --jc, 5/5/2003
  12.  
  13. use Apache::RequestRec ();
  14. use Apache::RequestUtil ();
  15. use Apache::RequestIO ();
  16. use Apache::Response ();
  17. use APR::Table ();
  18. use APR::Pool ();
  19. use Apache::Connection ();
  20. use Apache::Server ();
  21. use Apache::Log ();
  22.  
  23. 1;
  24.