XML::LibXSLT::Cache - Style sheet cache for XML::LibXSLT



NAME

XML::LibXSLT::Cache - Style sheet cache for XML::LibXSLT


VERSION

version 0.12


SYNOPSIS

    my $cache = XML::LibXSLT::Cache->new;
    my $stylesheet = $cache->parse_stylesheet_file('file.xsl');


DESCRIPTION

XML::LibXSLT::Cache is a cache for the XML::LibXSLT manpage style sheets loaded from files. It is useful to speed up loading of XSLT style sheets in persistent web applications.

This module caches the style sheet object after the first load and returns the cached version on subsequent loads. Style sheets are reloaded whenever the style sheet file changes. Changes to other files referenced during parsing also cause a reload, for example when using xsl:import and xsl:include.


METHODS

new

    my $cache = XML::LibXSLT::Cache->new(%opts);
    my $cache = XML::LibXSLT::Cache->new(\%opts);

Creates a new cache. Valid options are:

xslt
The the XML::LibXSLT manpage object that should be used to load stylsheets if you want to reuse an existing object. If this options is missing a new XML::LibXSLT object will be created.

parse_stylesheet_file

    my $stylesheet = $cache->parse_stylesheet_file($filename);

Works like parse_stylesheet_file in the XML::LibXSLT manpage.


AUTHOR

Nick Wellnhofer <wellnhofer@aevum.de>


COPYRIGHT AND LICENSE

This software is copyright (c) 2012 by Nick Wellnhofer.

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

 XML::LibXSLT::Cache - Style sheet cache for XML::LibXSLT