Working on a new PHP project that will (hopefully) have heavy storage requirements (now im not talking clusters and hadoop and all of that but just like heavy for 1 server...)
I was confident that MySQL was the perfect choice until I heard that regardless of the amount of data in question, XML is always faster than MySQL...
I had the impression that initially it was true but as the amount of information grew, MySQL qould gradually take the crown. The way I see it, as far as XML goes you have to load the entire file into memory and parse the entire thing it, which takes time. Maybe I'm not too sure about how extracting data from either of these two works (ive always blindly used MySQL with no problems) but in this case I want it to be as efficient as possible.
THanks,
Alex
I was confident that MySQL was the perfect choice until I heard that regardless of the amount of data in question, XML is always faster than MySQL...
I had the impression that initially it was true but as the amount of information grew, MySQL qould gradually take the crown. The way I see it, as far as XML goes you have to load the entire file into memory and parse the entire thing it, which takes time. Maybe I'm not too sure about how extracting data from either of these two works (ive always blindly used MySQL with no problems) but in this case I want it to be as efficient as possible.
THanks,
Alex