mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-24 20:06:09 +08:00
32 lines
457 B
PHP
32 lines
457 B
PHP
<?php
|
|
|
|
namespace App\Caches;
|
|
|
|
use App\Repos\Page as PageRepo;
|
|
|
|
class Page extends Cache
|
|
{
|
|
|
|
protected $lifetime = 7 * 86400;
|
|
|
|
public function getLifetime()
|
|
{
|
|
return $this->lifetime;
|
|
}
|
|
|
|
public function getKey($id = null)
|
|
{
|
|
return "page:{$id}";
|
|
}
|
|
|
|
public function getContent($id = null)
|
|
{
|
|
$pageRepo = new PageRepo();
|
|
|
|
$page = $pageRepo->findById($id);
|
|
|
|
return $page ?: null;
|
|
}
|
|
|
|
}
|