mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-05 01:52:17 +09:00
NOISSUE moduleController의 file cache 갱신 문제 수정.
This commit is contained in:
parent
7ee20bd2d7
commit
35384999c9
1 changed files with 4 additions and 4 deletions
|
|
@ -61,7 +61,7 @@ class moduleController extends module
|
||||||
$output = executeQuery('module.insertTrigger', $args);
|
$output = executeQuery('module.insertTrigger', $args);
|
||||||
|
|
||||||
//remove from cache
|
//remove from cache
|
||||||
$oCacheHandler = &CacheHandler::getInstance('object');
|
$oCacheHandler = &CacheHandler::getInstance('object', NULL, TRUE);
|
||||||
if($oCacheHandler->isSupport())
|
if($oCacheHandler->isSupport())
|
||||||
{
|
{
|
||||||
$oCacheHandler->invalidateGroupKey('triggers');
|
$oCacheHandler->invalidateGroupKey('triggers');
|
||||||
|
|
@ -91,7 +91,7 @@ class moduleController extends module
|
||||||
$output = executeQuery('module.deleteTrigger', $args);
|
$output = executeQuery('module.deleteTrigger', $args);
|
||||||
|
|
||||||
//remove from cache
|
//remove from cache
|
||||||
$oCacheHandler = &CacheHandler::getInstance('object');
|
$oCacheHandler = &CacheHandler::getInstance('object', NULL, TRUE);
|
||||||
if($oCacheHandler->isSupport())
|
if($oCacheHandler->isSupport())
|
||||||
{
|
{
|
||||||
$oCacheHandler->invalidateGroupKey('triggers');
|
$oCacheHandler->invalidateGroupKey('triggers');
|
||||||
|
|
@ -187,7 +187,7 @@ class moduleController extends module
|
||||||
$output = executeQuery('module.insertModuleConfig', $args);
|
$output = executeQuery('module.insertModuleConfig', $args);
|
||||||
|
|
||||||
//remove from cache
|
//remove from cache
|
||||||
$oCacheHandler = &CacheHandler::getInstance('object');
|
$oCacheHandler = &CacheHandler::getInstance('object', NULL, TRUE);
|
||||||
if($oCacheHandler->isSupport())
|
if($oCacheHandler->isSupport())
|
||||||
{
|
{
|
||||||
$cache_key = 'object:module_config:module_'.$module.'_site_srl_'.$site_srl;
|
$cache_key = 'object:module_config:module_'.$module.'_site_srl_'.$site_srl;
|
||||||
|
|
@ -211,7 +211,7 @@ class moduleController extends module
|
||||||
if(!$output->toBool()) return $output;
|
if(!$output->toBool()) return $output;
|
||||||
|
|
||||||
//remove from cache
|
//remove from cache
|
||||||
$oCacheHandler = &CacheHandler::getInstance('object');
|
$oCacheHandler = &CacheHandler::getInstance('object', NULL, TRUE);
|
||||||
if($oCacheHandler->isSupport())
|
if($oCacheHandler->isSupport())
|
||||||
{
|
{
|
||||||
$cache_key = 'object_module_part_config:'.$module.'_'.$module_srl;
|
$cache_key = 'object_module_part_config:'.$module.'_'.$module_srl;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue