Add pecl-xslcache, the XSL Cache extension is a modification of PHP's standard XSL extension

that caches the parsed XSL stylesheet representation between sessions for
2.5x boost in performance!

WWW: http://code.nytimes.com/projects/xslcache/
This commit is contained in:
Chin-San Huang 2007-10-28 11:14:34 +00:00
parent d9ba8c2135
commit 15c55082cd
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=202208
4 changed files with 41 additions and 0 deletions

View File

@ -749,6 +749,7 @@
SUBDIR += pecl-stem
SUBDIR += pecl-syck
SUBDIR += pecl-xdiff
SUBDIR += pecl-xslcache
SUBDIR += perl2html
SUBDIR += permute
SUBDIR += php4-ctype

View File

@ -0,0 +1,27 @@
# New ports collection makefile for: pecl-xslcache
# Date created: 2007/10/28
# Whom: chinsan
#
# $FreeBSD$
#
PORTNAME= xslcache
PORTVERSION= 0.6
CATEGORIES= textproc pear
MASTER_SITES= http://people.freebsd.org/~chinsan/PECL/ \
LOCAL/chinsan/PECL/ \
http://code.nytimes.com/downloads/
PKGNAMEPREFIX= pecl-
DIST_SUBDIR= PECL
MAINTAINER= chinsan@FreeBSD.org
COMMENT= Caches the parsed XSL stylesheet between sessions
DEFAULT_PHP_VER=5
IGNORE_WITH_PHP=4
USE_PHP= dom xml xsl
USE_PHP_BUILD= yes
USE_PHPEXT= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (PECL/xslcache-0.6.tar.gz) = 331635d5f32eee6f0f7b8f92d4ef75b6
SHA256 (PECL/xslcache-0.6.tar.gz) = 8d6574e264011f43b05ee267ee9c771427b0a36fa78d9621fc90775ef660466d
SIZE (PECL/xslcache-0.6.tar.gz) = 16555

View File

@ -0,0 +1,10 @@
The XSL Cache extension is a modification of PHP's standard XSL extension
that caches the parsed XSL stylesheet representation between sessions for
2.5x boost in performance for sites that repeatedly apply the same
transform.
Although there is still some further work that could be done on
the extension, this code is already proving beneficial in production use for
a few applications on the New York Times' website.
WWW: http://code.nytimes.com/projects/xslcache/