![]() |
Javascript Memory Limitations
Hi,
I was wondering if anyone had any data on the limitations of the current browsers, specifically IE8, IE9 FF 3.5+, and Chrome. I am building a large javascript browser application handling a lot of data and multiple pages and just wondering if I'm going to have problems. Thanks, Mica |
Re: Javascript Memory Limitations
On Aug 14, 4:13*pm, "MC" <mica[removethis]@aisus.com> wrote:
> Hi, > > I was wondering if anyone had any data on the limitations of the current > browsers, specifically IE8, IE9 FF 3.5+, and Chrome. What sort of (memory) limitations? > I am building a large > javascript browser application handling a lot of data and multiple pages and > just wondering if I'm going to have problems. > The Magic 8-ball says: signs point to yes. |
Re: Javascript Memory Limitations
MC wrote on 14 aug 2010 in comp.lang.javascript:
> I was wondering if anyone had any data on the limitations of the > current browsers, specifically IE8, IE9 FF 3.5+, and Chrome. I am > building a large javascript browser application handling a lot of data > and multiple pages and just wondering if I'm going to have problems. All memory will be confined to a per page maximum, if my memory serves me correctly. You will get problems with such large undertakings especially cross-browser ones. Why not keep the lunb of the data on the server and use serveride databases? -- Evertjan. The Netherlands. (Please change the x'es to dots in my emailaddress) |
Re: Javascript Memory Limitations
"Evertjan." <exjxw.hannivoort@interxnl.net> wrote in message news:Xns9DD5B8BC28CC0eejj99@194.109.133.242... > MC wrote on 14 aug 2010 in comp.lang.javascript: > >> I was wondering if anyone had any data on the limitations of the >> current browsers, specifically IE8, IE9 FF 3.5+, and Chrome. I am >> building a large javascript browser application handling a lot of data >> and multiple pages and just wondering if I'm going to have problems. > > All memory will be confined to a per page maximum, if my memory serves me > correctly. > > You will get problems with such large undertakings especially > cross-browser > ones. > > Why not keep the lunb of the data on the server and use serveride > databases? > > -- > Evertjan. > The Netherlands. > (Please change the x'es to dots in my emailaddress) So no one has any hard data on any of the browsers. I really don't want to discuss the why and go into that rabbit hole. Suffice it to say that letting the browser handle the data can significantly increase the speed at which users are able to use our software. |
Re: Javascript Memory Limitations
On Aug 14, 3:13 pm, "MC" <mica[removethis]@aisus.com> wrote:
> I was wondering if anyone had any data on the limitations of the current > browsers, specifically IE8, IE9 FF 3.5+, and Chrome. I am building a large > javascript browser application handling a lot of data and multiple pages and > just wondering if I'm going to have problems. On Aug 17, 8:54*am, "MC" <mica[removethis]@aisus.com> wrote: > So no one has any hard data on any of the browsers. > I really don't want to discuss the why and go into that rabbit hole. Suffice > it to say that letting the browser handle the data can significantly > increase the speed at which users are able to use our software. Your question is too vague to give you an appropriate answer. As it stands the answer is "yes and no" depending on what you're trying to accomplish and how you go about it. What is "a lot of data"? 1 MB? 1 GB? Textual data? Binary? How much communication between the server client is there? etc.... |
Re: Javascript Memory Limitations
"Michael Haufe ("TNO")" <tno@thenewobjective.com> wrote in message news:7bce5124-2334-42f5-bdc3-8337efb0c327@l14g2000yql.googlegroups.com... On Aug 14, 3:13 pm, "MC" <mica[removethis]@aisus.com> wrote: > I was wondering if anyone had any data on the limitations of the current > browsers, specifically IE8, IE9 FF 3.5+, and Chrome. I am building a large > javascript browser application handling a lot of data and multiple pages > and > just wondering if I'm going to have problems. On Aug 17, 8:54 am, "MC" <mica[removethis]@aisus.com> wrote: > So no one has any hard data on any of the browsers. > I really don't want to discuss the why and go into that rabbit hole. > Suffice > it to say that letting the browser handle the data can significantly > increase the speed at which users are able to use our software. >Your question is too vague to give you an appropriate answer. As it >stands the answer is "yes and no" depending on what you're trying to >accomplish and how you go about it. What is "a lot of data"? 1 MB? 1 >GB? Textual data? Binary? How much communication between the server >client is there? etc.... I am looking for information such as: Is there a set max memory for a browser or the parser? Is there a way to test to see if how much utilization is done? Does memory depend on the browser computer as opposed to some set limit? We are looking at a browser holding about .15mb data text, and a single page size of around 20,000 lines of html and javascript. There are about 20 forms in the page and an ajax update of the server is done every time the user leaves one form and goes to the next. |
Re: Javascript Memory Limitations
MC wrote on 17 aug 2010 in comp.lang.javascript:
> > "Evertjan." <exjxw.hannivoort@interxnl.net> wrote in message [..] >> Why not keep the lumb of the data on the server and use serveride >> databases? [please do not quote signatures on usenet] > So no one has any hard data on any of the browsers. What do you mean by "hard data"? Data is data, meseems. Do you mean persistent data between pages or sessions? Present day browsers only have cookies for such use, as identifiers of old and present sessions and some other data, or perhaps querystring data. > I really don't want to discuss the why and go into that rabbit hole. This is usenet. You cannot limit the response to your postings. What do you have against rabbits exor their holes, btw? > Suffice it to say that letting the browser handle the data can > significantly increase the speed at which users are able to use our > software. No that does not suffice, as there are far more important issues, like security, cross browser reliability. Subjective user speed can be an buying incentive, but that will be cheating your customer if you degrade security and reliability for that. Do you really think your web-pages will work correcly on most of the browsers on an Andriod, Symbian, or Windows Mobile platform, or a text-only browser like Lynx? -- Evertjan. The Netherlands. (Please change the x'es to dots in my emailaddress) |
Re: Javascript Memory Limitations
On Aug 17, 1:02*pm, "MC" <mica[removethis]@aisus.com> wrote:
> I am looking for information such as: > Is there a set max memory for a browser or the parser? There is no practical limit per se for the browsers you've mentioned, though depending on how your code is written, and the age of the client machine, things could well indeed become unusable. > Is there a way to test to see if how much utilization is done? > Does memory depend on the browser computer as opposed to some set limit? I would say don't worry about this level of detail at this stage. In Firefox at least you can type about:memory in the address bar to get a generic overview of memory use. > We are looking at a browser holding about .15mb data text, I assume you meant 15 MB and not 150kb. > and a single page size of around 20,000 lines of html and javascript. > There are about 20 forms in the page and an ajax update of the server is > done > every time the user leaves one form and goes to the next. Why would you need 15MB of data on every page to fill out a small number of forms? Since you'll already have a back and forth channel to the server, could you not load the relevant data on demand? This data can be stored on the client outside of RAM if necessary, but I'm curious to what the necessity is to have it all available at once anyway instead of loading bit s of it at a time as the relevant forms are needed. |
Re: Javascript Memory Limitations
On Aug 17, 4:01*pm, "Evertjan." <exjxw.hannivo...@interxnl.net> wrote:
> Do you really think your web-pages will work correcly on most of the > browsers on an Andriod, Symbian, or Windows Mobile platform, or a text-only > browser like Lynx? Probably not as the OP did not mention any concern about the browsers not mentioned in his/her list. |
Re: Javascript Memory Limitations
"Michael Haufe ("TNO")" <tno@thenewobjective.com> wrote in message news:0b615d8d-e312-45cd-810a-c8bcbccc60ce@v8g2000yqe.googlegroups.com... On Aug 17, 4:01 pm, "Evertjan." <exjxw.hannivo...@interxnl.net> wrote: > Do you really think your web-pages will work correcly on most of the > browsers on an Andriod, Symbian, or Windows Mobile platform, or a > text-only > browser like Lynx? Probably not as the OP did not mention any concern about the browsers not mentioned in his/her list. --------- Correct. This is a business application and we already know what our user base is using and we can set minimum configurations. |
| All times are GMT. The time now is 04:22 AM. |
Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.