Add the creation date to the cache tables
This commit is contained in:
parent
d5e1f33506
commit
268467fe04
|
@ -1025,9 +1025,11 @@ function db_definition() {
|
||||||
"fields" => array(
|
"fields" => array(
|
||||||
"url" => array("type" => "varchar(255)", "not null" => "1", "primary" => "1"),
|
"url" => array("type" => "varchar(255)", "not null" => "1", "primary" => "1"),
|
||||||
"content" => array("type" => "text", "not null" => "1"),
|
"content" => array("type" => "text", "not null" => "1"),
|
||||||
|
"created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
||||||
),
|
),
|
||||||
"indexes" => array(
|
"indexes" => array(
|
||||||
"PRIMARY" => array("url"),
|
"PRIMARY" => array("url"),
|
||||||
|
"created" => array("created"),
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
$database["parsed_url"] = array(
|
$database["parsed_url"] = array(
|
||||||
|
@ -1036,9 +1038,11 @@ function db_definition() {
|
||||||
"guessing" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0", "primary" => "1"),
|
"guessing" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0", "primary" => "1"),
|
||||||
"oembed" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0", "primary" => "1"),
|
"oembed" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0", "primary" => "1"),
|
||||||
"content" => array("type" => "text", "not null" => "1"),
|
"content" => array("type" => "text", "not null" => "1"),
|
||||||
|
"created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
||||||
),
|
),
|
||||||
"indexes" => array(
|
"indexes" => array(
|
||||||
"PRIMARY" => array("url", "guessing", "oembed"),
|
"PRIMARY" => array("url", "guessing", "oembed"),
|
||||||
|
"created" => array("created"),
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
$database["pconfig"] = array(
|
$database["pconfig"] = array(
|
||||||
|
|
|
@ -75,8 +75,8 @@ function oembed_fetch_url($embedurl, $no_rich_type = false){
|
||||||
else { //save in cache
|
else { //save in cache
|
||||||
$j = json_decode($txt);
|
$j = json_decode($txt);
|
||||||
if ($j->type != "error")
|
if ($j->type != "error")
|
||||||
q("INSERT INTO `oembed` (`url`, `content`) VALUES ('%s', '%s')",
|
q("INSERT INTO `oembed` (`url`, `content`, `created`) VALUES ('%s', '%s', '%s')",
|
||||||
dbesc(normalise_link($embedurl)), dbesc($txt));
|
dbesc(normalise_link($embedurl)), dbesc($txt), dbesc(datetime_convert()));
|
||||||
|
|
||||||
Cache::set($a->videowidth . $embedurl,$txt, CACHE_DAY);
|
Cache::set($a->videowidth . $embedurl,$txt, CACHE_DAY);
|
||||||
}
|
}
|
||||||
|
|
|
@ -72,8 +72,8 @@ function parseurl_getsiteinfo_cached($url, $no_guessing = false, $do_oembed = tr
|
||||||
|
|
||||||
$data = parseurl_getsiteinfo($url, $no_guessing, $do_oembed);
|
$data = parseurl_getsiteinfo($url, $no_guessing, $do_oembed);
|
||||||
|
|
||||||
q("INSERT INTO `parsed_url` (`url`, `guessing`, `oembed`, `content`) VALUES ('%s', %d, %d, '%s')",
|
q("INSERT INTO `parsed_url` (`url`, `guessing`, `oembed`, `content`, `created`) VALUES ('%s', %d, %d, '%s', '%s')",
|
||||||
dbesc(normalise_link($url)), intval(!$no_guessing), intval($do_oembed), dbesc(serialize($data)));
|
dbesc(normalise_link($url)), intval(!$no_guessing), intval($do_oembed), dbesc(serialize($data)), dbesc(datetime_convert()));
|
||||||
|
|
||||||
return $data;
|
return $data;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue