function getTotalRowCount()
  {
    $this->_checkRsCacheTotal();

    if($this->is_cached_total)
      return $this->cached_total_row_count;

    $this->cached_total_row_count = parent :: getTotalRowCount();

    $this->cache->put($this->cache_key_for_rs,
                         $this->cached_total_row_count,
                         RS_TOTAL_CACHE_COMMON_GROUP);

    return $this->cached_total_row_count;
  }