XML::LibXSLT::Cache - Style sheet cache for XML::LibXSLT |
XML::LibXSLT::Cache - Style sheet cache for XML::LibXSLT
version 0.12
my $cache = XML::LibXSLT::Cache->new;
my $stylesheet = $cache->parse_stylesheet_file('file.xsl');
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.
my $cache = XML::LibXSLT::Cache->new(%opts); my $cache = XML::LibXSLT::Cache->new(\%opts);
Creates a new cache. Valid options are:
my $stylesheet = $cache->parse_stylesheet_file($filename);
Works like parse_stylesheet_file in the XML::LibXSLT manpage.
Nick Wellnhofer <wellnhofer@aevum.de>
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 |