maximum size for xml files

后端 未结 8 582
难免孤独
难免孤独 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

    I think it depends on the context, where the file comes from/is generated from, what you are going to do with it, the bandwidth of any connection it has to pass through, system RAM size etc?

    what is your context?

    0 讨论(0)
  • 2020-12-20 20:11

    My rule is that if it's too slow to do what I want, then it's too big, and your data probably needs to be moved to some other format... database or such.

    Traversing XML nodes or using XPath can be a dog.

    0 讨论(0)
提交回复
热议问题