473,386 Members | 1,883 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Huge arrays - speed problems?

Are there any speed issues in javascript with having really large
arrays? I know if the array gets large enough, bandwidth and download
time can be an issue, but does it take inordinate amounts of time to
access a really large array?
--
--
Fabian
Visit my website often and for long periods!
http://www.lajzar.co.uk

Jul 20 '05 #1
10 7022
Fabian hu kiteb:
Are there any speed issues in javascript with having really large
arrays? I know if the array gets large enough, bandwidth and download
time can be an issue, but does it take inordinate amounts of time to
access a really large array?


Specifically, inordiante amounts of processor/disk access time.
--
--
Fabian
Visit my website often and for long periods!
http://www.lajzar.co.uk

Jul 20 '05 #2
Lee
Fabian said:

Are there any speed issues in javascript with having really large
arrays? I know if the array gets large enough, bandwidth and download
time can be an issue, but does it take inordinate amounts of time to
access a really large array?


That depends on what you consider to be "really large".

I wrote a simple script that creates an array of a given size,
loops through the array setting each element equal to 1,
<notes how long this has taken>
then loops through the array, adding up all those 1's, and
<notes how long this has taken>

I ran this in Netscape 7.1 and IE 6, with arrays of size
10,000, 100,000 and 1,000,000 elements, recording the time
in seconds to initialize the array, and then to access each
element (totalling them). All of the times were near zero
except at 1 million elements. That took Netscape 3 seconds
to initialize and 2 seconds to access, and IE 20 seconds(!)
to initialize but also 2 seconds to access all elements.

This was on a relatively slow processor.

Jul 20 '05 #3
Lee hu kiteb:
Fabian said:

Are there any speed issues in javascript with having really large
arrays? I know if the array gets large enough, bandwidth and download
time can be an issue, but does it take inordinate amounts of time to
access a really large array?


That depends on what you consider to be "really large".

I wrote a simple script that creates an array of a given size,
loops through the array setting each element equal to 1,
<notes how long this has taken>
then loops through the array, adding up all those 1's, and
<notes how long this has taken>

I ran this in Netscape 7.1 and IE 6, with arrays of size
10,000, 100,000 and 1,000,000 elements, recording the time
in seconds to initialize the array, and then to access each
element (totalling them). All of the times were near zero
except at 1 million elements. That took Netscape 3 seconds
to initialize and 2 seconds to access, and IE 20 seconds(!)
to initialize but also 2 seconds to access all elements.


The maximum array size I was envisioning was going to be 10,000 by
20,000. I originally envisioned single character text, but there is no
functional reason they couldn't be nunbers, and numbers probably work
better in js anyway. Nice to know I am unlikely to hit any speed
barriers here.
--
--
Fabian
Visit my website often and for long periods!
http://www.lajzar.co.uk

Jul 20 '05 #4
rf

"Fabian" <la****@hotmail.com> wrote in message
news:bo*************@ID-174912.news.uni-berlin.de...
Lee hu kiteb:
Fabian said:

Are there any speed issues in javascript with having really large
arrays? I know if the array gets large enough, bandwidth and download
time can be an issue, but does it take inordinate amounts of time to
access a really large array?


That depends on what you consider to be "really large".

I wrote a simple script that creates an array of a given size,
loops through the array setting each element equal to 1,
<notes how long this has taken>
then loops through the array, adding up all those 1's, and
<notes how long this has taken>

I ran this in Netscape 7.1 and IE 6, with arrays of size
10,000, 100,000 and 1,000,000 elements, recording the time
in seconds to initialize the array, and then to access each
element (totalling them). All of the times were near zero
except at 1 million elements. That took Netscape 3 seconds
to initialize and 2 seconds to access, and IE 20 seconds(!)
to initialize but also 2 seconds to access all elements.


The maximum array size I was envisioning was going to be 10,000 by
20,000. I originally envisioned single character text, but there is no
functional reason they couldn't be nunbers, and numbers probably work
better in js anyway. Nice to know I am unlikely to hit any speed
barriers here.


GAK. 10,000 by 20,000. Hmmm lets see, even if this were a character array
that would be <calculates /> a 190+ megabyte array. Any computer with less
than half a gig of memory would grind to a halt in the paging subsystem.

What *are* you trying to do?

Cheers
Richard.
Jul 20 '05 #5
rf hu kiteb:
"Fabian" <la****@hotmail.com> wrote in message
news:bo*************@ID-174912.news.uni-berlin.de...
Lee hu kiteb:
Fabian said:

Are there any speed issues in javascript with having really large
arrays? I know if the array gets large enough, bandwidth and
download time can be an issue, but does it take inordinate amounts
of time to access a really large array?

That depends on what you consider to be "really large".

I wrote a simple script that creates an array of a given size,
loops through the array setting each element equal to 1,
<notes how long this has taken>
then loops through the array, adding up all those 1's, and
<notes how long this has taken>

I ran this in Netscape 7.1 and IE 6, with arrays of size
10,000, 100,000 and 1,000,000 elements, recording the time
in seconds to initialize the array, and then to access each
element (totalling them). All of the times were near zero
except at 1 million elements. That took Netscape 3 seconds
to initialize and 2 seconds to access, and IE 20 seconds(!)
to initialize but also 2 seconds to access all elements.


The maximum array size I was envisioning was going to be 10,000 by
20,000. I originally envisioned single character text, but there is
no functional reason they couldn't be nunbers, and numbers probably
work better in js anyway. Nice to know I am unlikely to hit any speed
barriers here.


GAK. 10,000 by 20,000. Hmmm lets see, even if this were a character
array that would be <calculates /> a 190+ megabyte array. Any
computer with less than half a gig of memory would grind to a halt in
the paging subsystem.

What *are* you trying to do?


That was the maximum *theoretical* size. I would be somewhat surprised
if i ever actually used an array that size. Basically, I was thinking of
virtually dividing the world's surace into 3 mile squares, then creating
a pseudo-virtual reality.

Oh well.

Lets see. 100k^0.5 is 316. I guess I can do something with a grid that
size.
--
--
Fabian
Visit my website often and for long periods!
http://www.lajzar.co.uk

Jul 20 '05 #6
"rf" <ma**********@the.time> wrote in message
news:5u********************@news-server.bigpond.net.au...
<snip>
GAK. 10,000 by 20,000. Hmmm lets see, even if this were a
character array that would be <calculates /> a 190+ megabyte
array. Any computer with less than half a gig of memory
would grind to a halt in the paging subsystem.

<snip>

Even that seems an optimistic calculation as JavaScript has no character
data type, and if it did it would be a two byte Unicode character.

I would think that storing a single character would require JavaScript
to use a string value, probably implemented as a minimum of a 32 bit
unsigned integer describing the length plus the string date (2 bytes
minimum for a char), plus another 4 bytes so the Array could point to
the string.

And storing the character code as a number wouldn't help much either as
JavaScript would use a 64 bit double precision float for that.

Richard.
Jul 20 '05 #7
Richard Cornford wrote:
"rf" <ma**********@the.time> wrote in message
news:5u********************@news-server.bigpond.net.au...
<snip>
GAK. 10,000 by 20,000. Hmmm lets see, even if this were a
character array that would be <calculates /> a 190+ megabyte
array. Any computer with less than half a gig of memory
would grind to a halt in the paging subsystem.

<snip>

Even that seems an optimistic calculation as JavaScript has no character
data type, and if it did it would be a two byte Unicode character.

I would think that storing a single character would require JavaScript
to use a string value, probably implemented as a minimum of a 32 bit
unsigned integer describing the length plus the string date (2 bytes
minimum for a char), plus another 4 bytes so the Array could point to
the string.

And storing the character code as a number wouldn't help much either as
JavaScript would use a 64 bit double precision float for that.

Richard.


Not to mention that even to the most frugal representation to send the data
to the browser would consist of something like:

var a=[1,2,3,4,5...];

Even for a 10,000 member array consisting of a sequence of numbers (which of
course you wouldn't send to the browser anyway, since you could generate it
locally), you'd be looking at nearly 50,000 bytes of data sent to construct
the array:

9 x 1 digit numbers + 89 x 2 digit numbers + 899 x 3 digit numbers + 8999 x
4 digit numbers + 10000 x comma

If you start looking at sending an array of say, 10,000 5 digit product
codes, you're now looking at over 60K worth of data to download a browser
over an average 3K/s dialup line, so 20 seconds just to finish loading the
page.

Unless you have something really astonishing to sell or say, few people
would wait that long.

--
| Grant Wagner <gw*****@agricoreunited.com>

* Client-side Javascript and Netscape 4 DOM Reference available at:
*
http://devedge.netscape.com/library/...ce/frames.html

* Internet Explorer DOM Reference available at:
*
http://msdn.microsoft.com/workshop/a...ence_entry.asp

* Netscape 6/7 DOM Reference available at:
* http://www.mozilla.org/docs/dom/domref/
* Tips for upgrading JavaScript for Netscape 7 / Mozilla
* http://www.mozilla.org/docs/web-deve...upgrade_2.html
Jul 20 '05 #8
Doesnt make much difference... Is your array in MBs or GBs :) wont be..
so no need to have any worry for large arrays... we have bandwidth these
days... dsl/cable/t1... why should one have speed issues.

Keyur Shah
Verizon Communications
732-423-0745

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Jul 20 '05 #9
In article <3f*********************@news.frii.net>, keyur shah
<ke***@softwareklinic.com> writes:
Doesnt make much difference... Is your array in MBs or GBs :) wont be..
so no need to have any worry for large arrays... we have bandwidth these
days... dsl/cable/t1... why should one have speed issues.


Obviously, you are unaware (or choose to ingore) the fact that over half the
Internet still connects via dialup. So it *does* make filesize an issue.

http://www.jibbering.com/faq/#FAQ2_3
With regards to quoting when posting.
--
Randy
Jul 20 '05 #10
JRS: In article <3f*********************@news.frii.net>, seen in
news:comp.lang.javascript, keyur shah <ke***@softwareklinic.com> posted
at Wed, 5 Nov 2003 21:31:51 :-
Doesnt make much difference... Is your array in MBs or GBs :) wont be..
so no need to have any worry for large arrays... we have bandwidth these
days... dsl/cable/t1... why should one have speed issues.

Keyur Shah
Verizon Communications
732-423-0745


That's rather a limited point of view; perhaps you are new to the
business? BTW, I don't think that number works from most telephones. A
communications firm should know about communication.

(A) Many users still have dial-up POTS connections, sometimes pay-by-
the-minute.

(B) Some users have portables, with low-bandwidth radio links.

(C) Since Javascript is a more-or-less general-purpose language, one can
perfectly use arrays whose contents have been generated by local
computation, and have not been transmitted in detail over the Internet.
Note : the OP was specifically referring to accessing large arrays.

--
© John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v4.00 IE 4 ©
<URL:http://jibbering.com/faq/> Jim Ley's FAQ for news:comp.lang.javascript
<URL:http://www.merlyn.demon.co.uk/js-index.htm> JS maths, dates, sources.
<URL:http://www.merlyn.demon.co.uk/> TP/BP/Delphi/JS/&c., FAQ topics, links.
Jul 20 '05 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

15
by: cody | last post by:
We have a huge project, the solutuion spans 50 projects growing. Everytime I want to start the project I have to wait nearly over 1 minute for the compiler to complete building. This is...
17
by: Havatcha | last post by:
Does anyone have a benchmark for the processing overhead of the STL Vector class, vs a C style array? I would dearly love to use Vectors, but am paranoid about slowing my real-time code down. Can...
50
by: jacob navia | last post by:
As everybody knows, the C language lacks a way of specifying bounds checked arrays. This situation is intolerable for people that know that errors are easy to do, and putting today's powerful...
6
by: Dennis | last post by:
I was trying to determine the fastest way to build a byte array from components where the size of the individual components varied depending on the user's input. I tried three classes I built: (1)...
6
by: Michael Gray | last post by:
VS 2003 VB.net Win2000 SP4 The System.Array class seems to be limited to 32 bit addresses, meaning that one can only assign 2^32 elements. Is there any way that I can have an array that...
8
by: Sullivan WxPyQtKinter | last post by:
a relation database has admiring search efficiency when the database is very big (several thousands or tens of thousands of records). But my current project is based on XML, for its tree-like data...
8
by: luke.yolanda | last post by:
is anyone know how to implement a huge 2-D array? such as ' unsigned char a; ' I compile and run it in VC 6.0, but it show me an error.... thank you guys
19
by: Jim West | last post by:
The execution speed of the following code is dramatically faster if I declare some arrays globally rather than locally. That is FOO a, b, c; void bar() { ... } runs much faster (up to...
4
by: busnet | last post by:
Hi. I've got the following problem: I have a huge xml-file that represents a street map of a city. Each street is stored as a couple of coordinates (start, end and all the turns). When I set a...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.