网站加速 PHP 缓冲的免费实现方法

 

我们知道 Zend 有免费的优化引擎针对 PHP 而作,但是 FreeLAMP 这次采用的是一个叫做 PHP Accelerator 的缓冲产品。

  我们在 LAMP 加速” 这篇文章中阐述过加速的几种办法,其中提到了 PHP Accelerator,它的安装方法十分简单,但是需要去他的网站获取一个激活键。

  

  注册自己的 SERVER_NAME 后,你会得到下面的提示:

  Your key for www.freelamp.com is 8edfd13946c96309244fcca309415902

  Now you must set the key for www.freelamp.com in your site configuration.

  For single domains not using virtual hosts

  The key can be set in the PHP.ini file as follows:

  # PHPA key for www.freelamp.com

  #

  PHPa.registration_key = 8edfd13946c96309244fcca309415902

  For domains setup as a virtual host

  Add the key to the domain specific section for your web server.

  # www.freelamp.com VHost entry

  #

  < VirtualHost 10.20.30.40>

  ServerName www.freelamp.com

  # ... (other vhost specific config)

  # PHP settings

  PHP_value PHPa.registration_key 8edfd13946c96309244fcca309415902

  # also enable PHPa if set to off in the PHP.ini (the default is on)

  PHP_value PHPa 1

  < /VirtualHost>

  具体的 PHPa 值的设置,可以参考软件随带的 CONFIGURATION 文件的配置。

  由于大多数网站是虚拟主机配置,所以,建议采用 PHP_value PHPa. 的方式设置。

  例如:

  PHP_value PHPa.tweaks off

  PHP_value PHPa.cache_dir /tmp

  PHP_value PHPa.file_perms 400

  PHP_value PHPa.ignore_files "/index.PHP, /a/test.PHP"

  # PHP_value PHPa.ignore_dirs "/data/WWW/site1/,/cache/"

  PHP_value PHPa.shm_size 8

  PHP_value PHPa.shm_key 0xc0deb00

  PHP_value PHPa.shm_perms 664

  三、设置 PHP.ini

  假设我们把下载后的文件解开到 /usr/local/PHP ,那么在 PHP.ini 中加入:

  zend_extension=/usr/local/PHP/PHP_accelerator_1.2p2.so

  并注释掉原来的 Zend 优化引擎:

  # zend_extension=/usr/local/Zend/lib/ZendOptimizer.so

  重新启动 Apache ,用浏览器浏览一个任意 PHP 页面可以看到 /

你可能感兴趣的:(网络技术)