Forum Moderators: open
Thanks
duck, yupp, I'll collect the information as the file is uploaded, but I'm trying to decide where to store it on the server. In a common XML file, separate stub files, or what. Having given it some more thought, I'm leaning towards XML to take advantage of the XML reading and writing capabilities built into .net. Other suggestions still most welcome.
Thanks for your interest.
This would largely depend on the number of files you are talking about. More than a few hundred and the searching for text and keeping things readily accessible go out the window with individual XML files. You could use a single XML file but once again, scaling past a few hundred documents gets tough because of file size.
I love XML but it can be slow. It is great to work with when there is a limited amount of data. More than 100K and the database route starts gaining speed advantages. Not to mention the added security of your data.
Thoughts?