The crate offers highly scalable concurrent containers written in the Rust language.
The read/write operations on a single key-value pair of scc::HashMap are linearizable while that of scc::HashIndex and scc::TreeIndex are similar to snapshot isolation.
scc::HashMap is a scalable in-memory unique key-value store that is targeted at highly concurrent heavy workloads. It does not distribute data to multiple shards as most concurrent hash maps do, instead only does it have a single array of structured data. The metadata management strategy is similar to that of Swisstable; a metadata cell which is separated from key-value pairs, is a 64-byte data structure for managing consecutive 32 key-value pairs. The metadata cell also has a linked list of key-value pair arrays for hash collision resolution. scc::HashMap automatically enlarges and shrinks the capacity of its internal array, and resizing happens without blocking other operations and threads. In order to keep the predictable latency of each operation, it does not rehash every entry in the container at once when resizing, instead it distributes the resizing workload to future access to the data structure. Once the hardware transactional memory intrinsics are generally available, read operations on a small key-value pair (~16KB) can be write-free.
| | 11 threads | 22 threads | 44 threads | 88 threads | |--------|----------------|----------------|----------------|----------------| | Insert | 129.704352035s | 153.744335742s | 220.257070192s | 299.582540084s | | Read | 94.333388963s | 106.670376931s | 118.535401915s | 130.963194287s | | Remove | 109.926310571s | 123.499814546s | 139.1093042s | 169.109640038s |
| | 11 threads | 22 threads | 44 threads | 88 threads | |--------|----------------|----------------|----------------|----------------| | Insert | 229.7548302s | 261.184001135s | 296.469319497s | 364.441279906s | | Mixed | 303.608915125s | 325.812785309s | 365.778084065s | 409.283309922s | | Remove | 192.868693139s | 211.50268085s | 230.968140497s | 265.453334202s |
Work-in-progress - Not fully implemented.
scc::HashIndex is an index version of scc::HashMap. It allows readers to access key-value pairs without performing a single write operation on the data structure. In order to take advantage of immutability and epoch-based reclamation, it requires the key and value types to implement the Clone trait.
scc::TreeIndex is a B+ tree optimized for read operations. Locks are only acquired on structural changes, and read/scan operations are neither blocked nor interrupted by other threads. The semantics of the read operation on a single key is similar to snapshot isolation in terms of database management software, as readers may not see the snapshot of data that is newer than the read snapshot. All the key-value pairs stored in a leaf are never dropped until the leaf becomes completely unreachable, thereby ensuring immutability of all the reachable key-value pairs. scc::TreeIndex harnesses this immutability of the leaf data structure to allow read operations to access key-value pairs without modifying the data structure.
Stabilize TreeIndex::remove: #25 fixed
Fix comments and documents
Optpimize memory usage of HashMap
Stabilize TreeIndex
Stabilize TreeIndex::remove: #21 partially fixed
Stabilize TreeIndex::remove: #22 fixed
Stabilize TreeIndex::remove: #20 fixed