[Lunar-commits] r24936 - in moonbase/trunk/zbeta: . xcache
Auke Kok
sofar at lunar-linux.org
Thu Jun 21 02:48:21 CEST 2007
Author: sofar
Date: 2007-06-21 02:48:21 +0200 (Thu, 21 Jun 2007)
New Revision: 24936
Added:
moonbase/trunk/zbeta/xcache/
moonbase/trunk/zbeta/xcache/BUILD
moonbase/trunk/zbeta/xcache/DEPENDS
moonbase/trunk/zbeta/xcache/DETAILS
Log:
fast and stable PHP opcode cacher.
From: stelzy at gmail.com
Added: moonbase/trunk/zbeta/xcache/BUILD
===================================================================
--- moonbase/trunk/zbeta/xcache/BUILD (rev 0)
+++ moonbase/trunk/zbeta/xcache/BUILD 2007-06-21 00:48:21 UTC (rev 24936)
@@ -0,0 +1,12 @@
+(
+
+ /usr/bin/phpize &&
+
+ OPTS="$OPTS --enable-xcache \
+ --enable-xcache-optimizer" &&
+
+ default_build &&
+
+ cat xcache.ini >> /etc/xcache.ini
+
+) > $C_FIFO 2>&1
Added: moonbase/trunk/zbeta/xcache/DEPENDS
===================================================================
--- moonbase/trunk/zbeta/xcache/DEPENDS (rev 0)
+++ moonbase/trunk/zbeta/xcache/DEPENDS 2007-06-21 00:48:21 UTC (rev 24936)
@@ -0,0 +1 @@
+depends %PHP
Added: moonbase/trunk/zbeta/xcache/DETAILS
===================================================================
--- moonbase/trunk/zbeta/xcache/DETAILS (rev 0)
+++ moonbase/trunk/zbeta/xcache/DETAILS 2007-06-21 00:48:21 UTC (rev 24936)
@@ -0,0 +1,20 @@
+ MODULE=xcache
+ VERSION=1.2.0
+ WEB_SITE=http://xcache.lighttpd.net/
+ SOURCE=$MODULE-$VERSION.tar.bz2
+ SOURCE_URL=$WEB_SITE/pub/Releases
+ SOURCE_VFY=sha1:f7f2f4082c41545909793d8e86918e2845cf82f2
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE
+ ENTERED=20070620
+ UPDATED=20070620
+ SHORT="fast and stable PHP opcode cacher"
+
+cat << EOF
+XCache is a open-source opcode cacher, which means that it accelerates
+the performance of PHP on servers. It optimizes performance by removing
+the compilation time of PHP scripts by caching the compiled state of
+PHP scripts into the shm (RAM) and uses the compiled version straight
+from the RAM. This will increase the rate of page generation time by
+up to 5 times as it also optimizes many other aspects of php scripts
+and reduce serverload.
+EOF
More information about the Lunar-commits
mailing list