예제 #1
0
 public function testCacheLocal()
 {
     $source = new CM_PagingSource_Sql('`num`', 'test');
     $source->enableCacheLocal();
     $this->assertEquals(100, $source->getCount());
     CM_Db_Db::delete('test', array('num' => 0));
     $this->assertEquals(100, $source->getCount());
     $source->clearCache();
     $this->assertEquals(99, $source->getCount());
     CM_Cache_Local::getInstance()->flush();
 }
예제 #2
0
파일: All.php 프로젝트: cargomedia/cm
 /**
  * @param int $type OPTIONAL
  */
 public function __construct($type = null)
 {
     $where = null;
     if ($type) {
         $type = (int) $type;
         $where = '`type` = ' . $type;
     }
     $source = new CM_PagingSource_Sql('DISTINCT `actionType`, `actionVerb`, `type`', 'cm_actionLimit', $where, '`type`, `actionType`, `actionVerb`');
     $source->enableCacheLocal();
     parent::__construct($source);
 }
예제 #3
0
파일: Action.php 프로젝트: cargomedia/cm
 /**
  * @param CM_Action_Abstract $action
  */
 public function __construct(CM_Action_Abstract $action)
 {
     $source = new CM_PagingSource_Sql('DISTINCT `actionType`, `actionVerb`, `type`', 'cm_actionLimit', '`actionType` = ' . $action->getType() . ' AND `actionVerb` = ' . $action->getVerb(), '`type`');
     $source->enableCacheLocal();
     parent::__construct($source);
 }
예제 #4
0
파일: Blocked.php 프로젝트: cargomedia/cm
 public function __construct()
 {
     $source = new CM_PagingSource_Sql('`ip`', 'cm_ipBlocked');
     $source->enableCacheLocal(60);
     parent::__construct($source);
 }
예제 #5
0
파일: Splittest.php 프로젝트: cargomedia/cm
 /**
  * @param CM_Model_Splittest $splittest
  */
 public function __construct(CM_Model_Splittest $splittest)
 {
     $source = new CM_PagingSource_Sql('id', 'cm_splittestVariation', '`splittestId`=' . $splittest->getId());
     $source->enableCacheLocal(86400);
     parent::__construct($source);
 }
예제 #6
0
파일: Enabled.php 프로젝트: cargomedia/cm
 public function __construct()
 {
     $source = new CM_PagingSource_Sql('id, abbreviation', 'cm_model_language', 'enabled = 1', 'name ASC');
     $source->enableCacheLocal();
     parent::__construct($source);
 }
예제 #7
0
파일: Online.php 프로젝트: cargomedia/cm
 public function __construct()
 {
     $source = new CM_PagingSource_Sql('userId', 'cm_user_online');
     $source->enableCacheLocal(1);
     parent::__construct($source);
 }
예제 #8
0
파일: All.php 프로젝트: cargomedia/cm
 public function __construct()
 {
     $source = new CM_PagingSource_Sql('name', 'cm_splitfeature');
     $source->enableCacheLocal();
     parent::__construct($source);
 }
예제 #9
0
파일: All.php 프로젝트: cargomedia/cm
 public function __construct()
 {
     $source = new CM_PagingSource_Sql('name', 'cm_splittest', null, 'createStamp');
     $source->enableCacheLocal();
     parent::__construct($source);
 }