php使用緩存
這要根據你的實際情況來定,有文件緩存,資料庫緩存,還有memcache緩存。。。。。
B. php文件緩存類匯總
本文實例講述了php的文件緩存類。分享給大家供大家參考。具體分析如下:
緩存類是我們開發應用中會常用使用到的功能,下面就來給大家整理幾個php文件緩存類了,各個文件緩存類寫法不同,但在性能上會有區別,有興趣測試的朋友可測試一下這些緩存類。
例1
復制代碼
代碼如下:<?php
$fzz
=
new
fzz_cache;
$fzz->kk
=
$_SERVER;
//寫入緩存
//$fzz->set("kk",$_SERVER,10000);
//此方法不與類屬性想沖突,可以用任意緩存名;
print_r($fzz->kk);
//讀取緩存
//print_r($fzz->get("kk"));
//unset($fzz->kk);
//刪除緩存
//$fzz->_unset("kk");
var_mp(isset($fzz->kk));
//判斷緩存是否存在
//$fzz->_isset("kk");
//$fzz->clear();
//清理過期緩存
//$fzz->clear_all();
//清理所有緩存文件
class
fzz_cache{
public
$limit_time
=
20000;
//緩存過期時間
public
$cache_dir
=
"data";
//緩存文件保存目錄
//寫入緩存
function
__set($key
,
$val){
$this->_set($key
,$val);
}
//第三個參數為過期時間
function
_set($key
,$val,$limit_time=null){
$limit_time
=
$limit_time
?
$limit_time
:
$this->limit_time;
$file
=
$this->cache_dir."/".$key.".cache";
$val
=
serialize($val);
@file_put_contents($file,$val)
or
$this->error(__line__,"fail
to
write
in
file");
@chmod($file,0777);
@touch($file,time()+$limit_time)
or
$this->error(__line__,"fail
to
change
time");
}
//讀取緩存
function
__get($key){
return
$this->_get($key);
}
function
_get($key){
$file
=
$this->cache_dir."/".$key.".cache";
if
(@filemtime($file)>=time()){
return
unserialize(file_get_contents($file));
}else{
@unlink($file)
or
$this->error(__line__,"fail
to
unlink");
return
false;
}
}
//刪除緩存文件
function
__unset($key){
return
$this->_unset($key);
}
function
_unset($key){
if
(@unlink($this->cache_dir."/".$key.".cache")){
return
true;
}else{
return
false;
}
}
//檢查緩存是否存在,過期則認為不存在
function
__isset($key){
return
$this->_isset($key);
}
function
_isset($key){
$file
=
$this->cache_dir."/".$key.".cache";
if
(@filemtime($file)>=time()){
return
true;
}else{
@unlink($file)
;
return
false;
}
}
//清除過期緩存文件
function
clear(){
$files
=
scandir($this->cache_dir);
foreach
($files
as
$val){
if
(filemtime($this->cache_dir."/".$val)<time()){
@unlink($this->cache_dir."/".$val);
}
}
}
//清除所有緩存文件
function
clear_all(){
$files
=
scandir($this->cache_dir);
foreach
($files
as
$val){
@unlink($this->cache_dir."/".$val);
}
}
function
error($msg,$debug
=
false)
{
$err
=
new
Exception($msg);
$str
=
"<pre>
<span
style='color:red'>error:</span>
".print_r($err->getTrace(),1)."
</pre>";
if($debug
==
true)
{
file_put_contents(date('Y-m-d
H_i_s').".log",$str);
return
$str;
}else{
die($str);
}
}
}
?>