監(jiān)理公司管理系統(tǒng) | 工程企業(yè)管理系統(tǒng) | OA系統(tǒng) | ERP系統(tǒng) | 造價咨詢管理系統(tǒng) | 工程設計管理系統(tǒng) | 甲方項目管理系統(tǒng) | 簽約案例 | 客戶案例 | 在線試用
X 關閉

PHP緩存技術

申請免費試用、咨詢電話:400-8352-114

發(fā)個PHP緩存完成,完成了apc和文件緩存,承繼Cache_Abstract即可完成挪用第三方的緩存東西。

  參考shindig的緩存類和apc。

  Php代碼

  <?php<!--?php

  class CacheException extends Exception {}

  /**

  * 緩存抽象類

  */

  abstract class Cache_Abstract {

  /**

  * 讀緩存變量

  *

  * @param string $key 緩存下標

  * @return mixed

  */

  abstract public function fetch($key);

  /**

  * 緩存變量

  *

  * @param string $key 緩存變量下標

  * @param string $value 緩存變量的值

  * @return bool

  */

  abstract public function store($key, $value);

  /**

  * 刪除緩存變量

  *

  * @param string $key 緩存下標

  * @return Cache_Abstract

  */

  abstract public function delete($key);

  /**

  * 清(刪)除一切緩存

  *

  * @return Cache_Abstract

  */

  abstract public function clear();

  /**

  * 鎖定緩存變量

  *

  * @param string $key 緩存下標

  * @return Cache_Abstract

  */

  abstract public function lock($key);

  /**

  * 緩存變量解鎖

  *

  * @param string $key 緩存下標

  * @return Cache_Abstract

  */

  abstract public function unlock($key);

  /**

  * 獲得緩存變量能否被鎖定

  *

  * @param string $key 緩存下標

  * @return bool

  */

  abstract public function isLocked($key);

  /**

  * 確保不是鎖定形態(tài)

  * 最多做$tries次睡眠等候解鎖,超時則跳過并解鎖

  *

  * @param string $key 緩存下標

  */

  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擴展緩存完成

  *

  *

  * @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');

  }

  }

  /**

  * 保管緩存變量

  *

  * @param string $key

  * @param mixed $value

  * @return bool

  */

  public function store($key, $value) {

  return apc_store($this->_storageKey($key), $value);

  }

  /**

  * 讀取緩存

  *

  * @param string $key

  * @return mixed

  */

  public function fetch($key) {

  return apc_fetch($this->_storageKey($key));

  }

  /**

  * 肅清緩存

  *

  * @return Cache_Apc

  */

  public function clear() {

  apc_clear_cache();

  return $this;

  }

  /**

  * 刪除緩存單位

  *

  * @return Cache_Apc

  */

  public function delete($key) {

  apc_delete($this->_storageKey($key));

  return $this;

  }

  /**

  * 緩存單位能否被鎖定

  *

  * @param string $key

  * @return bool

  */

  public function isLocked($key) {

  if ((apc_fetch($this->_storageKey($key) . '.lock')) === false) {

  return false;

  }

  return true;

  }

  /**

  * 鎖定緩存單位

  *

  * @param string $key

  * @return Cache_Apc

  */

  public function lock($key) {

  apc_store($this->_storageKey($key) . '.lock', '', 5);

  return $this;

  }

  /**

  * 緩存單位解鎖

  *

  * @param string $key

  * @return Cache_Apc

  */

  public function unlock($key) {

  apc_delete($this->_storageKey($key) . '.lock');

  return $this;

  }

  /**

  * 完好緩存名

  *

  * @param string $key

  * @return string

  */

  private function _storageKey($key) {

  return $this->_prefix . '_' . $key;

  }

  }

  /**

  * 文件緩存完成

  *

  *

  * @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');

  }

  }

  /**

  * 獲取緩存文件

  *

  * @param string $key

  * @return string

  */

  protected function _getCacheFile($key) {

  $subdir = $this->useSubdir ? substr($key, 0, 2) . '/' : '';

  return $this->_cachesDir . '/' . $subdir . $key . '.php';

  }

  /**

  * 讀取緩存變量

  * 為避免信息泄露,緩存文件花樣為php文件,并以""開首

  *

  * @param string $key 緩存下標

  * @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;

  }

  /**

  * 緩存變量

  * 為避免信息泄露,緩存文件花樣為php文件,并以""開首

  *

  * @param string $key 緩存變量下標

  * @param string $value 緩存變量的值

  * @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, '' . serialize($value));

  }

  /**

  * 刪除緩存變量

  *

  * @param string $key 緩存下標

  * @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;

  }

  /**

  * 緩存單位能否曾經(jīng)鎖定

  *

  * @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");

  }

  }

  }

  // 設定緩存鎖文件的拜訪和修正工夫

  @touch($cacheFile . '.lock');

  return $this;

  }

  /**

  * 解鎖

  *

  * @param string $key

  * @return Cache_File

  */

  public function unlock($key) {

  $cacheFile = self::_getCacheFile($key);

  @unlink($cacheFile . '.lock');

  return 

發(fā)布:2007-03-31 14:48    編輯:泛普軟件 · xiaona    [打印此頁]    [關閉]
南昌OA系統(tǒng)
聯(lián)系方式

成都公司:成都市成華區(qū)建設南路160號1層9號

重慶公司:重慶市江北區(qū)紅旗河溝華創(chuàng)商務大廈18樓

咨詢:400-8352-114

加微信,免費獲取試用系統(tǒng)

QQ在線咨詢

泛普南昌網(wǎng)站建設公司其他應用

南昌OA軟件 南昌OA新聞動態(tài) 南昌OA信息化 南昌OA快博 南昌OA行業(yè)資訊 南昌軟件開發(fā)公司 南昌門禁系統(tǒng) 南昌物業(yè)管理軟件 南昌倉庫管理軟件 南昌餐飲管理軟件 南昌網(wǎng)站建設公司