views:

40

answers:

2

Hello guys,

I'm working on project based on Affiliate Product Data Feeds, I need to parse a lot of XML files sometimes their size is up to 300MB. I develop with PHP and Mysql.

Please what you recommend for me. is a dedicated server with 4Gb Ram can support large XML files parsing?

+3  A: 

XMLReader is a streaming reader, so if you do things right, you don't need a lot of memory at all.

Evert
A: 

I agree with Evert, XMLReader is the best reader, I am parsing files more than 600 mb with it

gajendra.bang