|
| 1 | +rocksdb: A persistent key-value store for flash storage |
| 2 | +Authors: The Facebook Database Engineering Team |
| 3 | + |
| 4 | +This code is a library that forms the core building block for a fast |
| 5 | +key value server, especially suited for storing data on flash drives. |
| 6 | +It has an Log-Stuctured-Merge-Database (LSM) design with flexible tradeoffs |
| 7 | +between Write-Amplification-Factor(WAF), Read-Amplification-Factor (RAF) |
| 8 | +and Space-Amplification-Factor(SAF). It has multi-threaded compactions, |
| 9 | +making it specially suitable for storing multiple terabytes of data in a |
| 10 | +single database. |
| 11 | + |
| 12 | +The core of this code has been derived from open-source leveldb. |
| 13 | + |
1 | 14 | leveldb: A key-value store |
2 | 15 | Authors: Sanjay Ghemawat (sanjay@google.com) and Jeff Dean (jeff@google.com) |
3 | 16 |
|
|