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