當前位置:工程項目OA系統(tǒng) > 泛普各地 > 江西OA系統(tǒng) > 南昌OA系統(tǒng) > 南昌網(wǎng)站建設公司
PHP緩存技術
參考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
- 1SEO是前提建站考慮 建站過程容易嗎
- 2寫好分享類文章打造百萬流量
- 3信息化管理,進銷存軟件選擇且行且謹慎!
- 4用垃圾站點流量也能做出正規(guī)網(wǎng)站
- 5確定網(wǎng)站的關鍵詞的幾個重要因素
- 6企業(yè)網(wǎng)站優(yōu)化方案
- 7五步讓你成為SEO高手
- 8寶雞網(wǎng)站建設教你如何良好的進行企業(yè)網(wǎng)站建設
- 9怎樣購買鏈接
- 10PHP 5.4 相關知識
- 11怎樣提升網(wǎng)站關鍵詞排名
- 12優(yōu)秀的OA軟件應具備的五大特性
- 13使用納客會員管理系統(tǒng)遇到的問題(問答四)
- 14網(wǎng)站收錄及關鍵詞排名分析
- 15如何通過優(yōu)化網(wǎng)站何提升網(wǎng)站的轉(zhuǎn)化率
- 16怎樣快速換到合適的友情鏈接
- 1710個讓你意想不到的退燒小偏方
- 18電熱水器燃氣熱水器性能對比
- 19PHP5.3作廢函數(shù)的處理方法
- 20合肥最好的網(wǎng)絡公司告訴大家快速提高網(wǎng)站權重
- 21優(yōu)化需要找到適合辦法
- 22什么是Seo策略
- 23企業(yè)如何注冊有新意的域名?
- 24草根站長必讀網(wǎng)站運營如何做好策劃工作
- 25巴馬濃縮液一盒多少錢,巴馬湯濃縮液效果如何
- 26如何建立APP端整體形象
- 27資料的整理過程實質(zhì)上是資料的辨析過程
- 28虛擬主機的用途
- 29消費者在選購空調(diào)時應綜合考慮以下因素
- 30網(wǎng)站搜索引擎優(yōu)化和收錄
成都公司:成都市成華區(qū)建設南路160號1層9號
重慶公司:重慶市江北區(qū)紅旗河溝華創(chuàng)商務大廈18樓