Hello all,
I currently have a PHP app that I'm going to be rewriting in Rails. My idea is to slowly replace all of the PHP functionality with Rails, so both will need to run side-by-side (I think I've got this part figured out).
Now, at the moment, each of our client's has a separate database, and as it turns out, it would be really great if we could import/export certain objects between our clients (basically setup some default objects for them or share them in a community-like manner).
So, my thinking is that this is a great starting point for my Rails integration, especially since it has methods like from_xml
and from_json
. My question is: of those two, which one do you think would be better? I'd like to hear the arguments from the perspectives of backwards compatibility, reliability, speed, etc.
Thanks very much!