https://github.com/4molybdenum2/safe-rlu
Implementation of Read-Log-Update synchronization primitive in Rust
https://github.com/4molybdenum2/safe-rlu
concurrency lock-free operating-system rust synchronization
Last synced: 4 months ago
JSON representation
Implementation of Read-Log-Update synchronization primitive in Rust
- Host: GitHub
- URL: https://github.com/4molybdenum2/safe-rlu
- Owner: 4molybdenum2
- Created: 2024-04-28T23:49:42.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-28T22:57:22.000Z (over 1 year ago)
- Last Synced: 2024-10-28T23:29:55.645Z (over 1 year ago)
- Topics: concurrency, lock-free, operating-system, rust, synchronization
- Language: Rust
- Homepage:
- Size: 138 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Read Log Update in Rust
Implementation of Read Log Update in Rust. Motivated by [this](https://stanford-cs242.github.io/f19/assignments/final/rlu/)
### Running Benchmarks:
To run the single object benchmarks
```bash
make all
```
To run RLU based Set benchmarks
```bash
make rluset-btree
```

To run Rust's BTree Set benchmarks
```bash
make benchmark-btree
```

### Benchmarking Plot
To install necessary libraries for making the benchmark plots:
```bash
make deps
```
To run the benchmark plots:
```bash
make plot
```