缓存readdir()

时间:2012-11-29 09:33:37

标签: php caching

有没有缓存readdir()结果?现在,每当我进入网站上的特定网页时,我都会在目录树上执行readdir()。

更新

  • 所有用户的目录结构都相同。
  • 不幸的是我的共享主机不支持APC或memcache: - (

3 个答案:

答案 0 :(得分:1)

您可以将Memcachefilemtime

一起使用
$path = __DIR__ . "/test";
$cache = new Memcache();
$cache->addserver("localhost");

$key = sha1($path);
$info = $cache->get(sha1($path));

if ($info && $info->time == filemtime($path)) {
    echo "Cache Copy ", date("Y-m-d g:i:s", $info->time);
} else {
    $info = new stdClass();
    $info->readDir = array_map("strval", iterator_to_array(new FilesystemIterator($path, FilesystemIterator::SKIP_DOTS)));
    $info->time = filemtime($path);
    $cache->set($key, $info, MEMCACHE_COMPRESSED, 0);
    echo "Path Changed ", date("Y-m-d g:i:s", $info->time);
}

var_dump(array_values($info->readDir));

更新

  

不幸的是我的共享主机不支持APC或memcache: - (

您可以使用文件系统

$path = __DIR__ . "/test";
$cache = new MyCache(__DIR__ . "/a");

$key = sha1($path);
$info = $cache->get($key);

if ($info && $info->time == filemtime($path)) {
    echo "Cache Copy ", date("Y-m-d g:i:s", $info->time);
} else {
    $info = new stdClass();
    $info->readDir = array_map("strval", iterator_to_array(new FilesystemIterator($path, FilesystemIterator::SKIP_DOTS)));
    $info->time = filemtime($path);
    $cache->set($key, $info, MEMCACHE_COMPRESSED, 0);
    echo "Path Changed ", date("Y-m-d g:i:s", $info->time);
}

var_dump(array_values((array) $info->readDir));

使用的课程

class MyCache {
    private $path;

    function __construct($path) {
        is_writable($path) or trigger_error("Path Not Writeable");
        is_dir($path) or trigger_error("Path Not a Directory");
        $this->path = $path;
    }

    function get($key) {
        $file = $this->path . DIRECTORY_SEPARATOR . $key . ".cache";
        if (! is_file($file))
            return false;
        $data = file_get_contents($file);
        substr($data, 0, 2) == "##" and $data = gzinflate(substr($data, 2));
        return json_decode($data);
    }

    function set($key, $value, $compression = 0) {
        $data = json_encode($value);
        $compression and $data = gzdeflate($data, 9) and $data = "##" . $data;
        return file_put_contents($this->path . DIRECTORY_SEPARATOR . $key . ".cache", $data);
    }
}

答案 1 :(得分:0)

如果启动会话,则可以将其存储在会话变量中。查看session_start()函数等。

答案 2 :(得分:0)

您可以使用多种方法缓存任何可序列化的PHP结构。 PHP现在附带APC,因此我建议查看APC对象缓存。

http://uk1.php.net/manual/en/ref.apc.php

确保在目录结构更改时清除缓存有一些逻辑。