The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Apache::Session::Serialize::YAML - use YAML for serialization

SYNOPSIS

  use Apache::Session::Flex;

  tie %session, 'Apache::Session::Flex', $id, {
       Store     => 'MySQL',
       Lock      => 'Null',
       Generate  => 'MD5',
       Serialize => 'YAML',
  };

DESCRIPTION

Apache::Session::Serialize::YAML enables you to use YAML (YAML Ain't Makeup Language [tm]) for Apache::Session serialization format. YAML is a generic data serialization language for scripting languages, so this module can be a good start to share session data with Ruby, Python or PHP etc.

See http://www.yaml.org/ for details of YAML.

AUTHOR

Tatsuhiko Miyagawa <miyagawa@bulknews.net>

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO

YAML, Apache::Session, Apache::Session::PHP