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; } }
public function getCustomRowList(SelectQuery $query) { return parent::getCustomRowList($query, Cache::DO_NOT_CACHE); }