Thực sự getAllIds
là cách tốt nhất để làm điều đó. Ví dụ, trong mô hình tài nguyên bộ sưu tập sản phẩm, phương thức này trông như thế này:
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);
}
Vì vậy, mọi thứ được lấy từ một lựa chọn duy nhất và không yêu cầu lặp lại. Cũng trong mô hình tài nguyên trừu tượng, nó trông như thế này:
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);
}
Vì vậy, mọi thứ mở rộng Mage_Core_Model_Resource_Db_Collection_Abstract
nên sử dụng điều này trừ khi có quy định khác.
Phương thức bạn nhìn vào xuất phát từ lớp cơ sở Varien_Data_Collection
nhưng nó được ghi đè lên trong các phần tử con của nó.
$this->_getClearSelect()
.