maximum size for xml files

后端 未结 8 584
难免孤独
难免孤独 2020-12-20 19:25

whats your rule of thumb for maximum size for xml files.

What if I ask maximum no of records, and one record have 10 values for instance? Another condition is we are

8条回答
  •  天涯浪人
    2020-12-20 20:08

    This may be not the thing you want to hear, but... If you're thinking about the size of your XML files, chances are you should use a database instead of files (even if they are not flat files but structured like XML). Databases are highly optimized for efficient storage of huge masses of data. The best algorithms for retrieving data are in the code base of databases.

提交回复
热议问题