Ask a Question related to ASP.NET General, Design and Development.
-
Maxim #1
Large Arrays of Strings
Hello,
I was wondering what the best data structure is to hold a large list of
strings?
Currently I am using the ArrayList, which seems to be terribly slow to add a
large number of strings.
Any help on this matter would be fantastic.
Thankyou.
Maxim.
Maxim Guest
-
output large arrays to html
Hello, I'm looking for ways to 'echo' a single large associative array repeatedly w/ as little overhead as possible. I'm developing a simple... -
[PHP-DEV] ZEND_DISABLE_MEMORY_CACHE=0 problematic on large arrays
http://cvs.php.net/diff.php/ZendEngine2/zend_alloc.c?r1=1.118&r2=1.119&ty=h&num=10 " - Add heap to memory manager. This should improve... -
[PHP] HOW DO U SPLIT UP LARGE STRINGS?
hello, you can use the split() method to break this up into pieces. Unless you are doing a large number of inserts on tables with several keys... -
HOW DO U SPLIT UP LARGE STRINGS?
I've a string with a huge mySQL query, seperated by a semi-colon and then line-break. You can't run this query staright to mySQL (and i dont want to... -
parsing large (>1gb) strings..how?
I've written a short perl script which scan an accidentally (or stupidly) initialised harddrive for lost files. Here is the code i have thus far... -
Natty Gur #2
Re: Large Arrays of Strings
Hi,
Storing strings in array list will cause boxing and unboxing of strings.
I think it is better to keep those strings in simple string array.
Natty Gur, CTO
Dao2Com Ltd.
28th Baruch Hirsch st. Bnei-Brak
Israel , 51114
Phone Numbers:
Office: +972-(0)3-5786668
Fax: +972-(0)3-5703475
Mobile: +972-(0)58-888377
Know the overall picture
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Natty Gur Guest



Reply With Quote

