Mostly I have just used XML files to store config info and to provide elementary data persistence. Now I am building a website where I need to store some XML type data. However I am already using JSON extensively throughout the whole thing. Is it bad to store JSON directly instead of XML, or should I store the XML and introduce an XML parser.
|
2
|
|||||||||
|
|
|
Not bad at all. Although there are more XML editors, so if you're going to need to manually edit the files, XML may be better. |
||||
|
|
|
Differences between using XML and JSON are:
Now, please notice the common thread: any of the benefits of using pure XML listed above are 100% lost immediately as soon as you store JSON as XML payload. Therefore, the gudelines are as follows:
UPDATED: Removed Unicode bullets as per info in comments |
||||||||||||
|
|
|
It's just data, like XML. There's nothing about it that would preclude saving it to disk. |
||
|
|
|
|
Define "bad". They're both just plain-text formats. Knock yourself out. |
||
|
|
|
If your storing the data as a cache (meaning it was in one format and you had to process it programatically to "make" it JSON. Then I say no problem. As long as the However if you're storing a configuration file in JSON which needs human interaction to "process" then I may reconsider. Using JSON for simple Key:Value pairs is cool, but anything beyond that, the format may be too compact (meaning nested { and [ brackets can be hard to decipher). |
||
|
|
|
|
one potential issue with JSON, when there is deep nesting, is readability, you may actually see ]]]}], making debugging difficult |
|||
|
|
