diff options
author | MaZderMind | 2015-04-01 21:03:51 +0200 |
---|---|---|
committer | MaZderMind | 2015-04-01 21:03:51 +0200 |
commit | b468a665f5b642578f51fc4031ac36e6f359c680 (patch) | |
tree | 43d0f681bde41dad840e07aeb2c86177cd728753 /model/Schedule.php | |
parent | 759184ba0519acfa7d695e44c2af6c2d2a27794e (diff) |
Use URL as Part of the Cache-Key
Diffstat (limited to 'model/Schedule.php')
-rw-r--r-- | model/Schedule.php | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/model/Schedule.php b/model/Schedule.php index db93c4d..86fb111 100644 --- a/model/Schedule.php +++ b/model/Schedule.php @@ -232,7 +232,7 @@ class Schedule extends ModelBase if(!$this->isCacheEnabled()) return null; - return apc_fetch('SCHEDULE.CACHE'); + return apc_fetch($this->getCacheKey()); } private function doCache($value) @@ -242,10 +242,15 @@ class Schedule extends ModelBase if(!$this->isCacheEnabled()) return $value; - apc_store('SCHEDULE.CACHE', $value, $this->getCacheDuration()); + apc_store($this->getCacheKey(), $value, $this->getCacheDuration()); return $value; } + private function getCacheKey() + { + return 'SCHEDULE.'.$this->getScheduleUrl(); + } + private function getScheduleToRoomSlugMapping() { $mapping = array(); |