GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
XML::LibXSLT::Cache(3) User Contributed Perl Documentation XML::LibXSLT::Cache(3)

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

version 0.14

    my $cache = XML::LibXSLT::Cache->new;

    my $stylesheet = $cache->parse_stylesheet_file('file.xsl');

XML::LibXSLT::Cache is a cache for XML::LibXSLT 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:

xslt
The XML::LibXSLT 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.

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

Works like "parse_stylesheet_file" in XML::LibXSLT.

Nick Wellnhofer <wellnhofer@aevum.de>

This software is copyright (c) 2020 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.

2020-01-15 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.