0

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

更新:

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

3 回答 3

1

你可以Memcache使用filemtime

$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);
    }
}
于 2012-11-29T10:06:35.017 回答
0

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

于 2012-11-29T09:36:54.160 回答
0

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

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

当目录结构改变时,一定要有一些清除缓存的逻辑。

于 2012-11-29T09:38:25.320 回答