|
[code:1]2004年06月09日星期三上午01时25分09秒[root@tian httpd]# rpm -qli php-mmcache
Name : php-mmcache Relocations: (not relocatable)
Version : 4.3.2_2.4.6 Vendor: (none)
Release : 4.1.fc2.fr Build Date: 2004年06月09日 星期三 01时11分10秒
Install Date: 2004年06月09日 星期三 01时14分13秒 Build Host: tian.com
Group : Development/Languages Source RPM: php-mmcache-4.3.2_2.4.6-4.1.fc2.fr.src.rpm
Size : 187427 License: GPL
Signature : (none)
URL : http://turck-mmcache.sourceforge.net/
Summary : PHP accelerator, optimizer, encoder and dynamic content cacher
Description :
Turck MMCache is a free open source PHP accelerator, optimizer, encoder and
dynamic content cache for PHP. It increases performance of PHP scripts by
caching them in compiled state, so that the overhead of compiling is almost
completely eliminated. Also it uses some optimizations to speed up execution
of PHP scripts. Turck MMCache typically reduces server load and increases the
speed of your PHP code by 1-10 times.
/etc/php.d/mmcache.ini
/usr/lib/php4/mmcache.so
/usr/share/doc/php-mmcache-4.3.2_2.4.6
/usr/share/doc/php-mmcache-4.3.2_2.4.6/CREDITS
/usr/share/doc/php-mmcache-4.3.2_2.4.6/EXPERIMENTAL
/usr/share/doc/php-mmcache-4.3.2_2.4.6/LICENSE
/usr/share/doc/php-mmcache-4.3.2_2.4.6/README
/usr/share/doc/php-mmcache-4.3.2_2.4.6/README.loader
/usr/share/doc/php-mmcache-4.3.2_2.4.6/TODO
/var/cache/php-mmcache
[/code:1]
[code:1]
2004年06月09日星期三上午01时25分10秒[root@tian httpd]# cat /etc/php.d/mmcache.ini
; Enable Turck MMCache extension module
; zend_extension = /usr/lib/php4/mmcache.so
extension = mmcache.so
; Options for the MMCache module
mmcache.cache_dir = /var/cache/php-mmcache
mmcache.shm_size = 0
mmcache.enable = 1
mmcache.optimizer = 1
mmcache.debug = 0
mmcache.check_mtime = 1
mmcache.filter = ""
mmcache.shm_max = 0
mmcache.shm_ttl = 3600
mmcache.shm_prune_period = 0
mmcache.shm_only = 0
mmcache.compress = 1
mmcache.keys = shm
mmcache.sessions = shm
mmcache.content = shm
2004年06月09日星期三上午01时25分32秒[root@tian httpd]#
[/code:1] |
|