0
why does IE get +3GB of my ram and crashes my computer when i try to open a serialized dataset or datatable with it. file size = 10MB
0
why does IE get +3GB of my ram and crashes my computer when i try to open a serialized dataset or datatable with it. file size = 10MB
1
A serialized data set is XML. If you're opening XML files -- particularly large ones -- in IE, not only is the document in RAM, but so is the entire node tree, and Microsoft client-side scripts which provide the syntax highlighting and node collapsing. IE has been (for me) notoriously slow and flaky when opening XML files, so I won't do it anymore.
If you're loading it into an app via DOM loading or script (which would make this programming-related and thus qualify it to get sent back to StackOverflow), you have even more to think about -- including your script's overall performance and memory overhead.
Just by the way, it is good policy on this site to flag questions for moderator attention, if you don't have the reputation to close/migrate them back. – Gnoupi – 2010-02-02T07:05:28.860
@Gnoupi: Normally I would have done exactly that; however in this case, I do think it's somewhat ambiguous as to which site it truly belongs to, and fear the SO community would again kick it back here. – John Rudy – 2010-02-02T12:11:17.283
it is migrated from stackoverflow by other people not me myself. – behrooz – 2010-01-08T14:01:41.493
@behrooz: I know. I unfortunately don't have close/migrate permissions on this site, otherwise I'd have probably voted to send it back where it belongs. – John Rudy – 2010-01-08T15:02:06.393
0
I've seen IE run amok and run my machines out of RAM when there's some shaky javascript code running. Doesn't seem to handle the case of bad javascript as well as other browsers.
0
Using a dataset is pretty heavy as it uses alot of xml. I would recommend using JSON. Its faster easier to consume using a browser and has a small footprint
Maybe because your DataSet is too large? How large is it? – John Saunders – 2009-12-15T12:20:59.763
notepad opens the files in 100ms.so the files don't have any problems!! – None – 2009-12-15T12:27:35.943
How are you accessing said data? – Rowland Shaw – 2009-12-15T12:42:16.360
Short answer: it is a Microsoft product. Long answer: there is a bug. – kmarsh – 2009-12-15T13:33:54.943
2Memory tastes nice? – William Hilsum – 2009-12-15T21:58:40.727