15 lines
357 B
PHP
15 lines
357 B
PHP
<?php
|
|
|
|
namespace app\common\library\cache;
|
|
use think\Cache;
|
|
class Clear
|
|
{
|
|
public static function course(){
|
|
Cache::clear(\app\common\constant\cache\Keys::COURSE_TAG);
|
|
Cache::clear(\app\common\constant\cache\Keys::PAGE_TAG);
|
|
}
|
|
|
|
public static function page(){
|
|
Cache::clear(\app\common\constant\cache\Keys::PAGE_TAG);
|
|
}
|
|
} |