mod_perl logo perl icon
previous page: Apache2::Util - Perl API for Misc Apache Utility functionspage up: mod_perl 2.0 APInext page: APR::Base64 - Perl API for APR base64 encoding/decoding functionality

APR - Perl Interface for Apache Portable Runtime (libapr and libaprutil Libraries)






mod_perl Pocket Reference

mod_perl Pocket Reference

By Andrew Ford
Writing Apache Modules with Perl and C

Writing Apache Modules with Perl and C

By Lincoln Stein, Doug MacEachern
Embedding Perl in HTML with Mason

Embedding Perl in HTML with Mason

By Dave Rolsky, Ken Williams
mod_perl2 User's Guide

mod_perl2 User's Guide

By Stas Bekman, Jim Brandt
Practical mod_perl

Practical mod_perl

By Stas Bekman, Eric Cholet
The mod_perl Developer's Cookbook

The mod_perl Developer's Cookbook

By Geoffrey Young, Paul Lindner, Randy Kobes


Table of Contents

Synopsis

  use APR ();


TOP

Description

On load this modules prepares the APR enviroment (initializes memory pools, data structures, etc.)

You don't need to use this module explicitly, since it's already loaded internally by all APR::* modules.



TOP

Using APR modules outside mod_perl 2.0

You'd use the APR::* modules outside mod_perl 2.0, just like you'd use it with mod_perl 2.0. For example to get a random unique string you could call:

  % perl -MAPR::UUID -le 'print APR::UUID->new->format'


TOP

See Also

mod_perl 2.0 documentation.



TOP

Copyright

mod_perl 2.0 and its core modules are copyrighted under The Apache Software License, Version 2.0.



TOP

Authors

The mod_perl development team and numerous contributors.






TOP
previous page: Apache2::Util - Perl API for Misc Apache Utility functionspage up: mod_perl 2.0 APInext page: APR::Base64 - Perl API for APR base64 encoding/decoding functionality