আপনি কয়েকটি বিষয় নিয়ে কাজ করতে পারেন;
- রেফারেন্স দ্বারা পাস না, সুতরাং অতিরিক্ত মেমরি ব্যবহার করে আপনি বস্তুগুলি পাস করতে পারেন, তবে অ্যারেগুলি ডিফল্টরূপে রেফারেন্স দিয়ে পাস করা যায় না। অথবা
&
মত পরামিতি ঘোষণায় একটি যুক্ত করুনfunction hello(array &$world)
- অবৈধ চেক, যদি কিছু না থাকে তবে তাৎক্ষণিকভাবে ফিরে আসে। এমন কিছু খুঁজে পাওয়ার চেষ্টা করবেন না যা সেখানে নেই
- পাঠযোগ্যতা কখনও কখনও কঠিন হতে পারে
- কিছু দস্তাবেজ যুক্ত করুন (যাতে আপনি এটি কয়েক দিন, সন্ন্যাসীদের, বছরগুলিতে দেখতে পান তবে বুঝতে পারবেন)
- স্মার্ট
if
স্টেটমেন্ট কম ইন্ডেন্টেশন পেতে
- ফাংশনগুলির একটিমাত্র উদ্দেশ্য থাকতে হবে, আপডেট স্টক বা আপডেট সম্পর্কিত হওয়া উচিত, উভয়ই নয়, তাই এমনকি এমনকি আরও ছোট ফাংশনে কিছু ফাংশনও কাটতে পারে। আপনার মনে মনে এই জাতীয় যুক্তি তৈরি করার চেষ্টা করুন এবং সেখান থেকে পুনরায় কাজ করুন।
- কিছু বিষয়বস্তুর জন্য অন্তর্নিহিত ডেটা সাফ করার জন্য একবার
->cleanModelCache()->clearInstance()
থেকে একবার দেখুন Mage_Core_Model_Model_Abstract
, জিনিসগুলিকে গতি বাড়িয়ে দিতে পারে।
- ইতিমধ্যে বলা হয়েছে যে অন্যান্য সমস্ত জিনিস মোটা।
আপনার বর্তমান কোডটিতে কিছু ইনলাইন প্রস্তাবনা সহ আপনার কোডের একটি আপডেট সংস্করণ যুক্ত করা হয়েছে, আমি কিছুটা যেতে পারি, তবে এটি বর্তমানে এতে আরও যুক্ত করবে না।
ফাংশন 1: উদ্দেশ্যটি সংগ্রহে চলছে
/**
* Walk collection
*
* @param Mage_Core_Model_Resource_Db_Collection_Abstract $collection
* @return void
*/
public function functionOne($collection)
{
// ...
// Walk collection, create references instead of passing array data
foreach ($collection as $item) {
// Update stock for product
if (!$this->_functionTwo($item)) {
// Not updated, continue next
continue;
}
// Update related products
$this->_functionThree($item); // Use same object again, no extra memory is used
}
// ...
}
কাজ 2: উদ্দেশ্য পরিবর্তিত হলে স্টক আপডেট করা হয় is
/**
* Update stock item if changed, returns true if updated
*
* @param Mage_Core_Model_Model_Abstract $item
* @return bool
*/
function _functionTwo($item)
{
$model = Mage::getModel('catalog/product');
/** @var $model Mage_Catalog_Model_Product */
$id = $model->getIdBySku($item->getData('sku'));
if (!$id) {
// no id found, so stop looking nothing up
return false;
}
// Get option value for store 1
$inventoryStatus = $model->getResource()
->getAttributeRawValue($id, 'product_inventory_status', 1);
if (!$inventoryStatus) {
// No need for another lookup in db, because the status isn't set
return false;
}
$invStatus = $model->getResource()
->getAttribute('product_inventory_status')
->setStoreId(0) // Get admin value
->getSource()
->getOptionText($inventoryStatus);
if (!$invStatus) {
// No need for another lookup in db, because the status has no text
return false;
}
if ($invStatus === 'Z') {
// Inventory status to not change something
return false;
}
$stockItem = Mage::getModel('cataloginventory/stock_item');
/** @var $stockItem Mage_CatalogInventory_Model_Stock_Item */
// $stockItem->setData(array()); // unneeded piece of code
$stockItem->loadByProduct($id);
if ($stockItem->getQty() == $item->getData('quantity')) {
// Valid stock
return false;
}
// Update stock
$stockItem->setQty($item->getData('quantity'));
$stockItem->save();
// End function and call function three separately, does something else
return true;
}
ফাংশন 3: সম্পর্কিত স্টক আইটেমগুলি আপডেট করার উদ্দেশ্য
/**
* Update related stock items, return false if no related items are found
*
* @param Mage_Core_Model_Model_Abstract $item
* @return bool
*/
function functionThree($item)
{
$collectionOfKits = Mage::getModel('kitinventory/kitinventory')
->getCollection()
->addFieldToFilter('related_sku', $item->getData('sku')); // Check if your indexes are set on these columns
if (!$collectionOfKits->getSize()) {
// Nothing found to relate to
return false;
}
$connection = Mage::getSingleton('core/resource')
->getConnection('core_write');
// Walk kits
foreach ($collectionOfKits as $kit) {
// getData is slightly faster then getSku(unless you've implemented it in your model)
// getSku -> __call('getSku') -> get -> lowercase('sku') -> getData('sku') | note, Magento has some internal caching in this
$kitSku = $kit->getData('sku');
$kitCollection = Mage::getModel('kitinventory/kitinventory')
->getCollection()
->addFieldToFilter('kit_sku', $kitSku)
->setOrder('related_sku', 'ASC');
// Use just a fetchAll to create a fast db query
$select = $kitCollection->getSelect();
$select->reset(Zend_Db_Select::COLUMNS)
->distinct()
->columns('related_sku')
->columns('required_quantity');
// Fetch component sku
$componentSkus = $connection->fetchAll($select, 0);
// Fetch required quantity
$componentRequiredQuantity = $connection->fetchCol($select, 1);
// ...
$componentProductCollection = Mage::getModel('catalog/product')
->getCollection()
->joinField('qty',
'cataloginventory/stock_item',
'qty',
'product_id = entity_id',
'{{table}}.stock_id = 1',
'left');
$componentProductCollection->addAttributeToFilter('sku', array('in' => $componentSkus));
// Next line will invoke a load on the product collection
foreach ($componentProductCollection as $component) {
$quantity = $component->getQty();
// ...
}
// You could choose to do a fetchAll here instead to get just the data you need
$connection = $componentProductCollection->getConnection();
foreach ($connection->fetchAll($componentProductCollection->getSelect()) as $row) {
// Will have a array here
$quantity = $row['quantity'];
// ... -- do not not which funky magic happens here
}
$kitId = Mage::getModel('catalog/product')
->getIdBySku($kitSku);
if (!$kitId) {
// No id
continue;
}
// You could also take a look if you can sum the stock and do a single update instead
$kitStockItem = Mage::getModel('cataloginventory/stock_item')
->loadByProduct($kitId);
$this->functionFour($kitStockItem, $kitSku, $amountOfKitsPossible);
// Or something like this, update single field
$connection->update($kitStockItem->getResource()->getMainTable(), array('qty' => $quantity), 'item_id = ' . $kitStockItem->getId());
}
return true;
}
ফাংশন 4: কিছু ভাগ্যবান (বা দুর্ভাগ্যজনক) অনুমান করা উচিত ছিল, আপাতত এটি একটি অকেজো ফাংশন, ফাংশন 3-তে যুক্ত করা যেতে পারে।
/**
* Save stock item if changed and something else, rather not say ;-)
*
* @param Mage_Catalog_Inventory_Model_Stock_Item $kitStockItem
* @param string $kitSku
* @param int $amountOfKitsPossible Guessed it
*/
function functionFour($kitStockItem, $kitSku, $amountOfKitsPossible)
{
// ...
// Do not know the rest of the code, so I wouldn't know which I could optimize here
// If it isn't to serious, you could look at a single query and not hitting extra functions
// Check if changed
if ($quantity !=$kitStockItem->getData('qty')) {
$kitStockItem->setQty($quantity);
$kitStockItem->save();
}
// ...
}
}
functionOne($collection)
? এটি কোন আকারে আইটেমের আকার / গণনা হবে? এসকিউ'র জন্য এটি কী লুপ করা দরকার?