streams/include/cache.php

45 lines
841 B
PHP
Raw Normal View History

2013-02-26 01:09:40 +00:00
<?php /** @file */
2012-10-23 02:46:18 +00:00
2011-10-24 11:02:38 +00:00
/**
* cache api
*/
class Cache {
public static function get($key){
$r = q("SELECT v FROM cache WHERE k = '%s' limit 1",
2011-10-24 11:02:38 +00:00
dbesc($key)
);
if ($r)
return $r[0]['v'];
2011-10-24 11:02:38 +00:00
return null;
}
public static function set($key,$value) {
2012-05-02 23:27:19 +00:00
$r = q("SELECT * FROM cache WHERE k = '%s' limit 1",
dbesc($key)
);
if($r) {
q("UPDATE cache SET v = '%s', updated = '%s' WHERE k = '%s' limit 1",
dbesc($value),
dbesc(datetime_convert()),
dbesc($key));
}
else {
q("INSERT INTO cache ( k, v, updated) VALUES ('%s','%s','%s')",
dbesc($key),
dbesc($value),
dbesc(datetime_convert()));
}
2011-10-24 11:02:38 +00:00
}
2012-05-02 23:27:19 +00:00
2011-10-24 11:02:38 +00:00
public static function clear(){
q("DELETE FROM cache WHERE updated < '%s'",
2011-10-24 11:02:38 +00:00
dbesc(datetime_convert('UTC','UTC',"now - 30 days")));
}
}