I am creating a Magento Import extension for parsing XML file generated by one of our ERP software. The file can have more than 1M record.
I want to parse the XML to fetch product details and add it to magento database. I have used Varien_Simplexml_Config
method to read XML but reading at some article I found the SimpleXml will degrade performance with large files as it load entire tree into memory.
Does anyone has any better solution? Please advice.