在php中,我创建了一个缓存文件,以便存储复杂的结果变量。一个变量,一个缓存文件。干得好。
问题在于缓存的术语。目前我把文件中的超时和变量放入文件中,但它没有优化,因为我必须打开文件来检查超时。
我想(如果可能的话)检查文件属性的超时(比如上次使用函数filemtime()修改的日期)。我们可以在文件中添加自定义属性吗?
另一种方法是在文件名中添加超时,而不是我最喜欢的解决方案。
[编辑]
final class Cache_Var extends Cache {
public static function put($key, $value, $timeout=0) {
// different timeout by variable (if 0, infinite timeout)
}
public static function get($key) {
// no timeout to get a var cache
// return null if file not found, or if timeout expire
// return var otherwise
}
}
答案 0 :(得分:2)
filectime()
可以真正帮助你
$validity = 60 * 60; // 3600s = 1 hour
if(filectime($filename) > time() - $validity) {
// cache is valid
} else {
// cache is invalid: recreate it
}
有一些缓存fdrameworks正是使用这种机制。
修改强>
如果每个缓存项需要不同的超时,请使用touch()
设置缓存文件的修改时间。您甚至可以将修改时间设置为未来值,并直接将filectime
与当前时间进行比较。
final class Cache_Var extends Cache {
public static function put($key, $value, $timeout=0) {
// different timeout by variable (if 0, infinite timeout)
// ...
touch($filename, time() + $timeout);
// For static files with unlimited lifetime I would simply store
// them in a separate folder
}
}