php中使用文件缓存的例子

2018-07-20    来源:open-open

容器云强势上线!快速搭建集群,上万Linux镜像随意使用

在web开发中,可以通过文件缓存,大大缓解数据库的压力。 如下代码是php中使用文件缓存的例子。

CacheLayer.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;
    }
}

example.php

<?php
// Load the cachelayer and the database connection (db connection is optional)
require_once "CacheLayer.php";
require_once "db_connection.php";

// Create a instance of the cachelayer
$cl_nav = new CacheLayer("navigation");
// Check to see if the cache is expired (60 * 10 = 10 minutes)
if($cl_nav->expired(60 * 10)){
    echo "Cache doesn't exist or is expired. Rebuilding...<br />";
    // if the cache is expired rebuild it
    $result    = mysql_query("select id, title from navigation");
    $new_cache = array();
    while($row = mysql_fetch_assoc($result)){
        $new_cache[] = $row;
    }
    // Save the array into the cache
    $cl_nav->put($new_cache);
}
echo "Loading from cache...<br />";
// Get the cache
$cache = $cl_nav->get();

// Display the cache
foreach($cache as $row){
    $id    = $row["id"];
    $title = $row["title"];
    echo "<a href='/$id/$title'>$title</a><br />";
}

标签: isp Mysql 代码 数据库

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。

上一篇:PHP压缩图片

下一篇:Android获得sdcard大小及使用情况信息