Java (and maybe the underlying C-ish code) has max capacity of Integer.MAX_VALUE (~ 2 billion) for arrays and containers in java.util. Are there other languages that feature containers with larger capacities?
|
|
|||||
|
|
|
You can write your own containers in both languages that support |
||
|
|
|
|
Do you have a machine with enough RAM to use more? O_o If you do, I'd say you need your own collection, because performance of the builtin ones will doubtfully scale... |
||
|
|
|
|
There is no limit if you write your own container. |
||
|
|
|
|
I normally use a database to store that large amounts of data. Solves a lot of problems with scaling. |
||
|
|
|
|
If you're starting to hit the 32-bit limit of a number in relation to the number of elements you can store in a list/array/collection, then I would seriously start finding a new way to implement your algorithm. You're going to have lots of "we need this specialized hardware in order to execute our program" type of requirements. |
||
|
|
|
|
You don't want languages, you want databases. |
||
|
|
|
|
STL containers in C++ use size_t indices, which are 64-bit on a 64-bit machine. |
||
|
|
|
|
An object database may suit your purposes better. For example, db4o. Or, for arrays of fixed size objects, it might be worth experimenting with a memory mapped file, but you will need a language interface to the OS API for that. edit: or just use on ORM to map your collection to a standard SQL database. These exist for most languages. For example ruby has activerecord and Java has hibernate. |
|||
|
|
|
|
No body wants to cope with such large quantities of data in memory at once. I don't know what you're trying to do, but if you need to maximize the amount of resident data you must take in account:
Well, there are a lot of things to research, but just my 2c. |
||
|
|
