mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-22 11:41:27 +08:00
32 lines
466 B
PHP
32 lines
466 B
PHP
<?php
|
|
|
|
namespace App\Caches;
|
|
|
|
use App\Repos\Topic as TopicRepo;
|
|
|
|
class Topic extends Cache
|
|
{
|
|
|
|
protected $lifetime = 7 * 86400;
|
|
|
|
public function getLifetime()
|
|
{
|
|
return $this->lifetime;
|
|
}
|
|
|
|
public function getKey($id = null)
|
|
{
|
|
return "topic:{$id}";
|
|
}
|
|
|
|
public function getContent($id = null)
|
|
{
|
|
$topicRepo = new TopicRepo();
|
|
|
|
$topic = $topicRepo->findById($id);
|
|
|
|
return $topic ?: null;
|
|
}
|
|
|
|
}
|