chest icon indicating copy to clipboard operation
chest copied to clipboard

Simple spill-to-disk dictionary

Results 2 chest issues
Sort by recently updated
recently updated
newest added

Much of the cost of using a chest on-disk is writing excess data. If we don't mind possibly spilling over the `available_memory` limit a bit then this operation could happen...

Using original keys hash value as a key will create a new key, but only until `flush()`. After `flush()` the key will still exist in the `.keys` file, but not...