[OT] Efficient file structure for very large lookup tables?

Francesco Cattoglio francesco.cattoglio at gmail.com
Tue Dec 17 16:14:58 PST 2013


On Tuesday, 17 December 2013 at 19:09:49 UTC, H. S. Teoh wrote:
> Another OT thread to pick your brains. :)
>
> What's a good, efficient file structure for storing extremely 
> large
> lookup tables? (Extremely large as in > 10 million entries, 
> with keys
> and values roughly about 100 bytes each.) The structure must 
> support
> efficient adding and lookup of entries, as these two operations 
> will be
> very frequent.

What kind of key do you have? vector of floats? integers?
How about some uberfast compression algorithm (eg: LZ4) to 
compress pages when you have to offload data to the disk?


More information about the Digitalmars-d mailing list