I'm faced with the nice task of building some kind of almost webshop in Symfony. Almost meaning that I won't need a shopping cart or secure connection or anything. Just a frontend to display products, categories and a link to the real shop. The data is provided by the shop as XML. As far as I know, I can request XML data specific to my needs and it will be served in real time by the shop server.
My question is this and I hope you don't mind me asking: What do you think is the smartest way to build this?
- read the entire xml OR
- read XMLs parted in my shop categories AND
- create php objects from the xml on request and rely on Symfony cache OR
- dump everything from the xml into MySQL
- A combination OR entire different approach ...???
I'm thankful for every hint!
Thanks,
thomas