Which of the following will get a specific product attribute from its product ID without loading the whole product?

  • Mage::getResourceModel(‘catalog/product’)->getAttributeRawValue($productId, ‘attribute_code’, $storeId);
  • $product->getResource()->getAttribute($attribute_code)->getFrontend()->getValue($product);
  • $object->getData($this->getAttribute()->getAttributeCode());
  • None of the above

stackoverflow.com/questions/19379792