mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-22 19:44:02 +08:00
47 lines
735 B
PHP
47 lines
735 B
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use App\Library\Cache\Backend\Redis as RedisCache;
|
|
|
|
class CourseCacheSyncer extends Service
|
|
{
|
|
|
|
/**
|
|
* @var RedisCache
|
|
*/
|
|
protected $cache;
|
|
|
|
/**
|
|
* @var \Redis
|
|
*/
|
|
protected $redis;
|
|
|
|
/**
|
|
* @var int
|
|
*/
|
|
protected $lifetime = 86400;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->cache = $this->getDI()->get('cache');
|
|
|
|
$this->redis = $this->cache->getRedis();
|
|
}
|
|
|
|
public function addItem($courseId)
|
|
{
|
|
$key = $this->getSyncKey();
|
|
|
|
$this->redis->sAdd($key, $courseId);
|
|
|
|
$this->redis->expire($key, $this->lifetime);
|
|
}
|
|
|
|
public function getSyncKey()
|
|
{
|
|
return 'course_cache_sync';
|
|
}
|
|
|
|
}
|