protected function _afterDeleteRows($where)
 {
     parent::_afterDeleteRows($where);
     $cacheIds = array();
     foreach ($this->getIds($where) as $id) {
         $cacheIds[] = $this->_getCacheId($id);
     }
     Kwf_Cache_Simple::delete($cacheIds);
 }