maximum size for xml files

后端 未结 8 583
难免孤独
难免孤独 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 19:55

    There is no limit of XML file size but it takes memory (RAM) as file size of XML file, so long XML file parsing size is performance hit.
    It is advised to long XML size using SAX for .NET to parse long XML documents.

提交回复
热议问题