aboutsummaryrefslogtreecommitdiff
path: root/model/Relive.php
diff options
context:
space:
mode:
authorMaZderMind2015-04-01 21:03:51 +0200
committerMaZderMind2015-04-01 21:03:51 +0200
commitb468a665f5b642578f51fc4031ac36e6f359c680 (patch)
tree43d0f681bde41dad840e07aeb2c86177cd728753 /model/Relive.php
parent759184ba0519acfa7d695e44c2af6c2d2a27794e (diff)
Use URL as Part of the Cache-Key
Diffstat (limited to '')
-rw-r--r--model/Relive.php16
1 files changed, 13 insertions, 3 deletions
diff --git a/model/Relive.php b/model/Relive.php
index a76761c..3a8b15b 100644
--- a/model/Relive.php
+++ b/model/Relive.php
@@ -8,12 +8,17 @@ class Relive extends ModelBase
return $this->has('CONFERENCE.RELIVE_JSON');
}
+ public function getJsonUrl()
+ {
+ return $this->get('CONFERENCE.RELIVE_JSON');
+ }
+
public function getTalks()
{
if($talks_by_id = $this->getCached())
return $talks_by_id;
- $talks = file_get_contents($this->get('CONFERENCE.RELIVE_JSON'));
+ $talks = file_get_contents($this->getJsonUrl());
$talks = utf8_decode($talks);
$talks = (array)json_decode($talks, true);
@@ -64,7 +69,7 @@ class Relive extends ModelBase
if(!$this->isCacheEnabled())
return null;
- return apc_fetch('RELIVE.CACHE');
+ return apc_fetch($this->getCacheKey());
}
private function doCache($value)
@@ -74,7 +79,12 @@ class Relive extends ModelBase
if(!$this->isCacheEnabled())
return $value;
- apc_store('RELIVE.CACHE', $value, $this->getCacheDuration());
+ apc_store($this->getCacheKey(), $value, $this->getCacheDuration());
return $value;
}
+
+ private function getCacheKey()
+ {
+ return 'RELIVE.'.$this->getJsonUrl();
+ }
}