kalyson
06-16-2007, 07:21 PM
Hello, there,
I'm trying to figure out the number of bytes that would be stored on the client if I fill an array with around 10,000 objects. I figured 2 bytes per character for the data characters in the array since it is unicode, but I'm not sure how many bytes the numbers would take. The objects in the array would look like this:
object1.property1 = 1003; //max 5 digits
object1.property2 = 123.2224;
object1.property3 = 323.8981;
object1.property4 = "object name"; //max 25-30 chars
Does it seem that this array would be too big and overwhelm the memory on the average user's machine?
Thanks!
Kris
I'm trying to figure out the number of bytes that would be stored on the client if I fill an array with around 10,000 objects. I figured 2 bytes per character for the data characters in the array since it is unicode, but I'm not sure how many bytes the numbers would take. The objects in the array would look like this:
object1.property1 = 1003; //max 5 digits
object1.property2 = 123.2224;
object1.property3 = 323.8981;
object1.property4 = "object name"; //max 25-30 chars
Does it seem that this array would be too big and overwhelm the memory on the average user's machine?
Thanks!
Kris