lsm_storage_engine 0.1.0

A high-performance, zero-dependency LSM-Tree storage engine in pure Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Use the official Rust image
FROM rust:latest

# Create and set the working directory
WORKDIR /usr/src/lsm-tree

# Copy the project files
COPY . .

# Build the project in release mode
RUN cargo build --release

# Run benchmarks by default
CMD ["cargo", "bench", "--bench", "ycsb"]