Turck MMCache
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.
Turck MMCache는 Zend Optimizer를 대신하는 오픈 소스 PHP 가속기.

http://turck-mmcache.sourceforge.net
Turck MMCache는 Zend Optimizer를 대신하는 오픈 소스 PHP 가속기.

/usr/ports/www/turckmmcache 에서 설치 뒤에
php.ini 에 다음과 같이 추가. cache_dir은 /tmp 가 기본이나 파일시스템의 용량때문에 www:www 소유의 /var/mmcache로 대체
php.ini 에 다음과 같이 추가. cache_dir은 /tmp 가 기본이나 파일시스템의 용량때문에 www:www 소유의 /var/mmcache로 대체
zend_extension="/usr/local/lib/php/20020429/mmcache.so" mmcache.shm_size="16" mmcache.cache_dir="/var/mmcache" mmcache.enable="1" mmcache.optimizer="1" mmcache.check_mtime="1" mmcache.debug="0" mmcache.filter="" mmcache.shm_max="0" mmcache.shm_ttl="0" mmcache.shm_prune_period="0" mmcache.shm_only="0" mmcache.compress="1" mmcache.keys="shm_and_disk" mmcache.sessions="shm_and_disk" mmcache.content="shm_and_disk"










