実際にそれgetAllIds
が最善の方法です。たとえば、製品コレクションのリソースモデルでは、メソッドは次のようになります。
public function getAllIds($limit = null, $offset = null)
{
$idsSelect = $this->_getClearSelect();
$idsSelect->columns('e.' . $this->getEntity()->getIdFieldName());
$idsSelect->limit($limit, $offset);
$idsSelect->resetJoinLeft();
return $this->getConnection()->fetchCol($idsSelect, $this->_bindParams);
}
したがって、すべてが単一の選択から取得され、反復は必要ありません。また、抽象リソースモデルでは次のようになります。
public function getAllIds()
{
$idsSelect = clone $this->getSelect();
$idsSelect->reset(Zend_Db_Select::ORDER);
$idsSelect->reset(Zend_Db_Select::LIMIT_COUNT);
$idsSelect->reset(Zend_Db_Select::LIMIT_OFFSET);
$idsSelect->reset(Zend_Db_Select::COLUMNS);
$idsSelect->columns($this->getResource()->getIdFieldName(), 'main_table');
return $this->getConnection()->fetchCol($idsSelect);
}
したがってMage_Core_Model_Resource_Db_Collection_Abstract
、特に指定されない限り、拡張するものはすべてこれを使用する必要があります。
参照したメソッドは基本クラスからVarien_Data_Collection
取得されますが、その子で上書きされます。
$this->_getClearSelect()
。