clear(); }else{ Cache::delete('initAdmin_' . $adminId); } return true; } /** * 更新节点缓存 * @param null $adminId * @return bool */ public static function updateNode($adminId = null) { if(empty($adminId)){ Cache::tag('authNode')->clear(); }else{ Cache::delete('allAuthNode_' . $adminId); } return true; } /** * 更新系统设置缓存 * @return bool */ public static function updateSysConfig(): bool { Cache::tag('sysConfig')->clear(); return true; } }