possum-db 0.3.1

concurrent disk-backed cache supporting efficient direct file I/O, transactions, and snapshots using file cloning and sparse files
Documentation
1
2
3
4
5
6
 * Add an integrity check for a directory that includes:
    * Removing unused values files. (This occurs at Handle init for now).
    * Vacuuming the manifest file? (I think this should be a method on Handle so the caller can choose when they can afford the hit).
 * Add hinting for value alignment (I'm sure there's some equation that determines if it's likely to be worthwhile to align a value. Possibly 2048, 4096 or 8192 would be appropriate for a 4096 block size?
 * Is greedy end possible? If a value exists above the region we're punching out, then we can extend up too. -> This is not possible without synchronizing with file cloning. Currently that requires holding a write lock on the manifest.
 * Support file cloning without holding the manifest write lock. This might be done with a "clone/read" lock file.