Exemplo n.º 1
0
 public function getCustomRowList(SelectQuery $query)
 {
     try {
         return parent::getCustomRowList($query, Cache::EXPIRES_FOREVER);
     } catch (CachedObjectNotFoundException $e) {
         throw $e;
     } catch (ObjectNotFoundException $e) {
         $this->cacheByQuery($query, Cache::NOT_FOUND);
         throw $e;
     }
 }
Exemplo n.º 2
0
 public function getCustomRowList(SelectQuery $query)
 {
     return parent::getCustomRowList($query, Cache::DO_NOT_CACHE);
 }