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


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

the YAML manpage, the Apache::Session manpage, the Apache::Session::PHP manpage