1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-22 03:32:47 +08:00
2020-04-20 19:21:29 +08:00

32 lines
457 B
PHP

<?php
namespace App\Caches;
use App\Repos\User as UserRepo;
class User extends Cache
{
protected $lifetime = 1 * 86400;
public function getLifetime()
{
return $this->lifetime;
}
public function getKey($id = null)
{
return "user:{$id}";
}
public function getContent($id = null)
{
$userRepo = new UserRepo();
$user = $userRepo->findById($id);
return $user ?: null;
}
}