Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
9answers
3k views

Python Disk-Based Dictionary

I was running some dynamic programming code (trying to brute-force disprove the Collatz conjecture =P) and I was using a dict to store the lengths of the chains I had already computed. Obviously, it ...
7
votes
3answers
121 views

Java disk-based key-value storage

Is there an efficient Java implementation of a filesystem-based key-value storage with the following features: Store, overwrite, and retrieve byte arrays by a unique ID (may be assigned by the ...
6
votes
3answers
1k views

Java: fast disk-based hash set

I need to store a big hash set, able to contain up to approx 200 millions 40 bit values. Storing it as 200 millions 64 bit value would be acceptable (despite the 200 millions * 16 bits loss). The ...
4
votes
10answers
4k views

Disk backed dictionary/cache for c#

I'm looking for a drop in solution for caching large-ish amounts of data. related questions but for different languages: Python Disk-Based Dictionary Disk-backed STL container classes? Close ...
1
vote
2answers
477 views

Has anybody used the WB B-tree library?

I stumbled across the WB on-disk B-tree library: http://people.csail.mit.edu/jaffer/WB It seems like it could be useful for my purposes (swapping data to disk during very large statistical ...