/**
  * 创建模块缓存
  */
 public function cModelCache()
 {
     $this->_modelModule = $this->getGlobal('model/Module', 'Model_Module');
     $info = $this->_modelModule->createCache();
     if ($info['status'] == 1) {
         $this->success($info['info']);
     } else {
         $this->error($info['info']);
     }
 }