php緩衝技術詳細介紹及php緩衝的實現代碼

來源:互聯網
上載者:User
有些資訊比方經常不變的,但是還是能變的資訊放在緩衝中以加快顯示速度,這是很有價值的,所謂的緩衝,通俗的理解就是一些儲存在伺服器端的共用資訊.它是於伺服器同生死的,我們在儲存緩衝的時候可以指定下次更新的時間的判斷,比方要在5分鐘更新一次

資料緩衝:這裡所說的資料緩衝是指資料庫查詢PHP緩衝機制,每次訪問頁面的時候,都會先檢測相應的快取資料是否存在,如果不存在,就串連資料庫,得到資料,並把查詢結果序列化後儲存到檔案中,以後同樣的查詢結果就直接從緩衝表或檔案中獲得。

用的最廣的例子看Discuz的搜尋功能,把結果ID緩衝到一個表中,下次搜尋相同關鍵字時先搜尋緩衝表。

舉個常用的方法,多表關聯的時候,把附表中的內容產生數組儲存到主表的一個欄位中,需要的時候數組分解一下,這樣的好處是唯讀一個表,壞處就是兩個資料同步會多不少步驟,資料庫永遠是瓶頸,用硬碟換速度,是這個的關鍵點。

頁面緩衝:

每次訪問頁面的時候,都會先檢測相應的快取頁面面檔案是否存在,如果不存在,就串連資料庫,得到資料,顯示頁面並同時產生快取頁面面檔案,這樣下次訪問的時候分頁檔就發揮作用了。(模板引擎和網上常見的一些PHP緩衝機制類通常有此功能)

時間觸發緩衝:

檢查檔案是否存在並且時間戳記小於設定的到期時間,如果檔案修改的時間戳記比目前時間戳減去到期時間戳記大,那麼就用緩衝,否則更新緩衝。

內容觸發緩衝:

當插入資料或更新資料時,強制更新PHP緩衝機制。

靜態緩衝:

這裡所說的靜態緩衝是指靜態化,直接產生HTML或XML等文字檔,有更新的時候重產生一次,適合於不太變化的頁面,這就不說了。

以上內容是代碼級的解決方案,我直接CP別的架構,也懶得改,內容都差不多,很容易就做到,而且會幾種方式一起用,但下面的內容是伺服器端的緩衝方案,非代碼級的,要有多方的合作才能做到

記憶體緩衝:

Memcached是高效能的,分布式的記憶體對象PHP緩衝機制系統,用於在Live App中減少資料庫負載,提升訪問速度。

php的緩衝器:

有eaccelerator, apc, phpa,xcache,這個這個就不說了吧,搜尋一堆一堆的,自己看啦,知道有這玩意就OK

MYSQL緩衝:

這也算非代碼級的,經典的資料庫就是用的這種方式,看下面的已耗用時間,0.09xxx之類的
我貼段根據藍色那傢伙修改後部分my.ini吧,2G的MYISAM表可以在0.05S左右,據說他前後改了有快一年

基於反向 Proxy的Web緩衝:

如Nginx,SQUID,mod_proxy(apache2以上又分為mod_proxy和mod_cache)
NGINX的例子

用google找到一些 php緩衝技術方法

發個PHP緩衝實現,實現了apc和檔案快取,繼承Cache_Abstract即可實現調用第三方的緩衝工具。

參考shindig的緩衝類和apc。

<?php   class CacheException extends Exception {}   /**   * <a href="http://www.php.cn/category/79.html">緩衝</a>抽象類別   */  abstract class Cache_Abstract {       /**       * 讀<a href="http://www.php1.cn/category/79.html">緩衝</a>變數       *       * @param string $key <a href="http://www.php.cn/category/79.html">緩衝</a>下標       * @return mixed       */      abstract public function fetch($key);               /**       * <a href="http://www.php.cn/category/79.html">緩衝</a>變數       *       * @param string $key <a href="http://www.php.cn/category/79.html">緩衝</a>變數下標       * @param string $value <a href="http://www.php.cn/category/79.html">緩衝</a>變數的值       * @return bool       */      abstract public function store($key, $value);               /**       * 刪除<a href="http://www.php.cn/category/79.html">緩衝</a>變數       *       * @param string $key <a href="http://www.php.cn/category/79.html">緩衝</a>下標       * @return Cache_Abstract       */      abstract public function delete($key);               /**       * 清(刪)除所有<a href="http://www.php.cn/category/79.html">緩衝</a>       *       * @return Cache_Abstract       */      abstract public function clear();               /**       * 鎖定<a href="http://www.php.cn/category/79.html">緩衝</a>變數       *       * @param string $key <a href="http://www.php.cn/category/79.html">緩衝</a>下標       * @return Cache_Abstract       */      abstract public function lock($key);           /**       * <a href="http://www.php.cn/category/79.html">緩衝</a>變數解鎖       *       * @param string $key <a href="http://www.php.cn/category/79.html">緩衝</a>下標       * @return Cache_Abstract       */      abstract public function unlock($key);           /**       * 取得<a href="http://www.php.cn/category/79.html">緩衝</a>變數是否被鎖定       *       * @param string $key <a href="http://www.php.cn/category/79.html">緩衝</a>下標       * @return bool       */      abstract public function isLocked($key);           /**       * 確保不是鎖定狀態       * 最多做$tries次睡眠等待解鎖,逾時則跳過並解鎖       *       * @param string $key <a href="http://www.php.cn/category/79.html">緩衝</a>下標       */      public function checkLock($key) {           if (!$this->isLocked($key)) {               return $this;           }                       $tries = 10;           $count = 0;           do {               usleep(200);               $count ++;           } while ($count <= $tries && $this->isLocked($key));  // 最多做十次睡眠等待解鎖,逾時則跳過並解鎖               $this->isLocked($key) && $this->unlock($key);                       return $this;       }   }           /**   * APC擴充<a href="http://www.php.cn/category/79.html">緩衝</a>實現   *    *    * @category   Mjie   * @package    Cache   * @author     流水孟春   * @copyright  Copyright (c) 2008- <cmpan(at)qq.com>   * @license    New BSD License   * @version    $Id: Cache/Apc.php 版本號碼 2010-04-18 23:02 cmpan $   */  class Cache_Apc extends Cache_Abstract {               protected $_prefix = 'cache.mjie.net';               public function __construct() {           if (!function_exists('apc_cache_info')) {               throw new CacheException('apc extension didn't installed');           }       }               /**       * 儲存<a href="http://www.php.cn/category/79.html">緩衝</a>變數       *       * @param string $key       * @param mixed $value       * @return bool       */      public function store($key, $value) {           return apc_store($this->_storageKey($key), $value);       }               /**       * 讀取<a href="http://www.php.cn/category/79.html">緩衝</a>       *       * @param string $key       * @return mixed       */      public function fetch($key) {           return apc_fetch($this->_storageKey($key));       }               /**       * 清除<a href="http://www.php.cn/category/79.html">緩衝</a>       *       * @return Cache_Apc       */      public function clear() {           apc_clear_cache();           return $this;       }               /**       * 刪除<a href="http://www.php.cn/category/79.html">緩衝</a>單元       *       * @return Cache_Apc       */      public function delete($key) {           apc_delete($this->_storageKey($key));           return $this;       }               /**       * <a href="http://www.php.cn/category/79.html">緩衝</a>單元是否被鎖定       *       * @param string $key       * @return bool       */      public function isLocked($key) {           if ((apc_fetch($this->_storageKey($key) . '.lock')) === false) {               return false;           }                       return true;       }               /**       * 鎖定<a href="http://www.php.cn/category/79.html">緩衝</a>單元       *       * @param string $key       * @return Cache_Apc       */      public function lock($key) {           apc_store($this->_storageKey($key) . '.lock', '', 5);           return $this;       }               /**       * <a href="http://www.php.cn/category/79.html">緩衝</a>單元解鎖       *       * @param string $key       * @return Cache_Apc       */      public function unlock($key) {           apc_delete($this->_storageKey($key) . '.lock');           return $this;       }               /**       * 完整<a href="http://www.php.cn/category/79.html">緩衝</a>名       *       * @param string $key       * @return string       */      private function _storageKey($key) {           return $this->_prefix . '_' . $key;       }   }       /**   * 檔案<a href="http://www.php.cn/category/79.html">緩衝</a>實現   *    *    * @category   Mjie   * @package    Cache   * @author     流水孟春   * @copyright  Copyright (c) 2008- <cmpan(at)qq.com>   * @license    New BSD License   * @version    $Id: Cache/File.php 版本號碼 2010-04-18 16:46 cmpan $   */  class Cache_File extends Cache_Abstract {       public $useSubdir     = false;               protected $_cachesDir = 'cache';               public function __construct() {           if (defined('DATA_DIR')) {               $this->_setCacheDir(DATA_DIR . '/cache');           }       }               /**       * 擷取<a href="http://www.php.cn/category/79.html">緩衝</a>檔案       *       * @param string $key       * @return string       */      protected function _getCacheFile($key) {           $subdir = $this->useSubdir ? substr($key, 0, 2) . '/' : '';           return $this->_cachesDir . '/' . $subdir . $key . '.php';       }           /**       * 讀取<a href="http://www.php.cn/category/79.html">緩衝</a>變數       * 為防止資訊泄露,<a href="http://www.php.cn/category/79.html">緩衝</a>檔案格式為php檔案,並以"<?php exit;?>"開頭       *        * @param string $key <a href="http://www.php.cn/category/79.html">緩衝</a>下標       * @return mixed       */      public function fetch($key) {           $cacheFile = self::_getCacheFile($key);           if (file_exists($cacheFile) && is_readable($cacheFile)) {               // include 方式               //return include $cacheFile;               // 系列化方式                   return unserialize(@file_get_contents($cacheFile, false, NULL, 13));           }               return false;       }           /**       * <a href="http://www.php.cn/category/79.html">緩衝</a>變數       * 為防止資訊泄露,<a href="http://www.php.cn/category/79.html">緩衝</a>檔案格式為php檔案,並以"<?php exit;?>"開頭       *       * @param string $key <a href="http://www.php.cn/category/79.html">緩衝</a>變數下標       * @param string $value <a href="http://www.php.cn/category/79.html">緩衝</a>變數的值       * @return bool       */      public function store($key, $value) {           $cacheFile = self::_getCacheFile($key);           $cacheDir  = dirname($cacheFile);               if(!is_dir($cacheDir)) {               if(!@mkdir($cacheDir, 0755, true)) {                   throw new CacheException("Could not make cache directory");               }           }       // 用include方式           //return @file_put_contents($cacheFile, '<?php return ' . var_export($value, true). ';');               return @file_put_contents($cacheFile, '<?php exit;?>' . serialize($value));       }           /**       * 刪除<a href="http://www.php.cn/category/79.html">緩衝</a>變數       *       * @param string $key <a href="http://www.php.cn/category/79.html">緩衝</a>下標       * @return Cache_File       */      public function delete($key) {           if(emptyempty($key)) {               throw new CacheException("Missing argument 1 for Cache_File::delete()");           }                       $cacheFile = self::_getCacheFile($key);           if(!@unlink($cacheFile)) {               throw new CacheException("Cache file could not be deleted");           }               return $this;       }           /**       * <a href="http://www.php.cn/category/79.html">緩衝</a>單元是否已經鎖定       *       * @param string $key       * @return bool       */      public function isLocked($key) {           $cacheFile = self::_getCacheFile($key);           clearstatcache();           return file_exists($cacheFile . '.lock');       }           /**       * 鎖定       *       * @param string $key       * @return Cache_File       */      public function lock($key) {           $cacheFile = self::_getCacheFile($key);           $cacheDir  = dirname($cacheFile);           if(!is_dir($cacheDir)) {               if(!@mkdir($cacheDir, 0755, true)) {                   if(!is_dir($cacheDir)) {                       throw new CacheException("Could not make cache directory");                   }               }           }               // 設定<a href="http://www.php.cn/category/79.html">緩衝</a>鎖檔案的訪問和修改時間           @touch($cacheFile . '.lock');           return $this;       }             /**       * 解鎖       *       * @param string $key       * @return Cache_File       */      public function unlock($key) {           $cacheFile = self::_getCacheFile($key);           @unlink($cacheFile . '.lock');           return
  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.