搜索
首页PHP 库Other libraries文件缓存的php类库
文件缓存的php类库
<?php
class CacheLayer{
  protected $root = "";
  protected $cache = "";
  protected $key = "";
  protected $life = 0;
  public function __construct($key, $root = "/cachelayer"){
    $this->root = $_SERVER["DOCUMENT_ROOT"].$root;
    $this->key = $key;
  }
  public function expired($life_span){
    $this->life = $life_span;
    $file = $this->root."/".$this->key.".cachelayer";
    if(is_file($file)){
      $mtime = filemtime($file);
      return (time() >= ($mtime + $this->life));
    }else{
      return true;
    }
  }
  public function put($content){
    $file = $this->root."/".$this->key.".cachelayer";
    if(!is_dir(dirname($this->root))){
      return false;
    }
    $this->delete();
    $content = json_encode($content);
    return (bool)file_put_contents($file, $content);
  }
  public function get(){
    $file = $this->root."/".$this->key.".cachelayer";
    if(is_file($file)){
      return json_decode(file_get_contents($file), true);
    }
    return array();
  }
  public function delete(){
    $file = $this->root."/".$this->key.".cachelayer";
    if(is_file($file)){
      unlink($file);
      return true;
    }
    return false;
  }
}
?>

这是一份很好用的PHP缓存类库,需要的朋友可以下载使用,可以通过文件缓存,大大缓解数据库的压力

免责声明

本站所有资源均由网友贡献或各大下载网站转载。请自行检查软件的完整性!本站所有资源仅供学习参考。请不要将它们用于商业目的。否则,一切后果由您负责!如有侵权,请联系我们删除。联系方式:admin@php.cn

相关文章

ThinkPHP文件缓存类代码ThinkPHP文件缓存类代码

06Jun2016

ThinkPHP文件缓存类代码 ThinkPHP ?php /** * @desc 文件缓存 * @edit http://www.lai18.com */ class Cache{ const C_FILE = '/Runtime/'; private $dir = ''; const EXT = '.tpl'; private $filename = ''; public function __construct($dir = ''){ $this-

PHP中文件缓存转内存缓存的方法_PHPPHP中文件缓存转内存缓存的方法_PHP

01Jun2016

顾名思义文件缓存转内存缓存就是将存储在文件中的数据转到内存中去,实现磁盘操作转为内存操作,这样可以大大提高数据访问速度,并能实现缓存数据的分布式部署。文件缓存与内存缓存的介绍请参考名词解释部

PHP文件缓存类实现代码_php技巧PHP文件缓存类实现代码_php技巧

16May2016

这篇文章主要介绍了PHP文件缓存类实现代码,php中缓存分类数据库缓存,文件缓存和内存缓存,对php缓存感兴趣的朋友可以学习学习下面的文章。

百度文库怎么清理软件缓存 清理软件缓存的操作方法百度文库怎么清理软件缓存 清理软件缓存的操作方法

10Jun2024

《百度文库》清理软件缓存的操作方法,百度文库软件中有很多的玩法,其中很多人在软件中不知道怎么去清理软件的缓存,下面去看看吧。清理软件缓存第一步,点击我的我们打开百度文库软件,然后我们的点击右下角的我的选项。第二步,点击设置进入我的页面之后,然后我们点击右上角的设置功能,如图所示。第三步,点击清理缓存进入设置之后,我们找到里面的清理缓存的功能,如图所示,点击即可清理缓存。

一文了解Golang中的缓存库freecache一文了解Golang中的缓存库freecache

21Feb2022

本篇文章带大家了解一下Golang缓存,深入浅出的介绍一下Golang中的缓存库freecache,希望对大家有所帮助!

PHP文件缓存函数详解:file_get_contents、file_put_contents、unlink等函数的文件缓存处理方法PHP文件缓存函数详解:file_get_contents、file_put_contents、unlink等函数的文件缓存处理方法

18Nov2023

PHP文件缓存函数详解:file_get_contents、file_put_contents、unlink等函数的文件缓存处理方法,需要具体代码示例在Web开发中,我们经常需要从文件中读取数据或将数据写入到文件中。而且,在某些情况下,我们需要缓存文件的内容以避免频繁的文件读写操作,从而提高性能。在PHP中,有几个常用的函数可以帮助我们实现文件缓存,这其中包

See all articles