Caching the events.

This commit is contained in:
Michael 2017-01-13 13:04:37 +00:00
parent a9833a395f
commit 844fefc9c4
1 changed files with 14 additions and 7 deletions

View File

@ -5,6 +5,7 @@ require_once('include/ForumManager.php');
require_once('include/group.php'); require_once('include/group.php');
require_once('mod/proxy.php'); require_once('mod/proxy.php');
require_once('include/xml.php'); require_once('include/xml.php');
require_once('include/cache.php');
/** /**
* @brief Outputs the counts and the lists of various notifications * @brief Outputs the counts and the lists of various notifications
@ -195,15 +196,21 @@ function ping_init(App $a)
} }
} }
$ev = qu("SELECT count(`event`.`id`) AS total, type, start, adjust FROM `event` $cachekey = "ping:events:".local_user();
WHERE `event`.`uid` = %d AND `start` < '%s' AND `finish` > '%s' and `ignore` = 0 $ev = Cache::get($cachekey);
ORDER BY `start` ASC ", if (is_null($ev)) {
intval(local_user()), $ev = qu("SELECT count(`event`.`id`) AS total, type, start, adjust FROM `event`
dbesc(datetime_convert('UTC', 'UTC', 'now + 7 days')), WHERE `event`.`uid` = %d AND `start` < '%s' AND `finish` > '%s' and `ignore` = 0
dbesc(datetime_convert('UTC', 'UTC', 'now')) ORDER BY `start` ASC ",
); intval(local_user()),
dbesc(datetime_convert('UTC', 'UTC', 'now + 7 days')),
dbesc(datetime_convert('UTC', 'UTC', 'now'))
);
}
if (dbm::is_result($ev)) { if (dbm::is_result($ev)) {
Cache::set($cachekey, $ev, CACHE_HOUR);
$all_events = intval($ev[0]['total']); $all_events = intval($ev[0]['total']);
if ($all_events) { if ($all_events) {