[erlang-questions] Large array of data structures

Claes Wikström klacke@REDACTED
Tue Sep 18 21:40:04 CEST 2007


Dmitrii 'Mamut' Dimandt wrote:
> I've received a question over at "Erlang in Russian" forum,
> http://erlang.dmitriid.com/forum/topic/11 that reads:
> "
> I need to process a huge array of structures - about 60 million of them
> in total. Each structure looks like this:  {PID, type (atom), direct
> (atom), index (Integer), nextind (Integer), prevind (Integer), position
> (Integer)}. I think such a structure would take up about 50 bytes and
> the entire array would then need 60 * 50 = 3 GB. It means that the array
> must be partly written to disk. In addition I need a fast access to PID,
> index, nextind, prevind fields. Searching for a structure by these
> fields should take about 2 microseconds, saving such a structure should
> takle as much. Reading and writing is performed on the same structures
> (about 30 000 of them) while the others simply wait. So the question is:
> how can i implement such an array?
> "
> 


Use Berkely DB and some of the BDB drivers posted here on the list

/klacke



More information about the erlang-questions mailing list