Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 474 Bytes

README.md

File metadata and controls

30 lines (23 loc) · 474 Bytes

memds

A reimplementation of Redis for fun.

Contributing Guide

Test

Run test with:

cargo test

Benchmark

  1. run memds:
RUST_LOG=error cargo run --release

memds is currently hardcoded to run on port 6901

  1. run redis-benchmark: with pipelining:
redis-benchmark -t set,get -n 1000000 -r 1000000 -p 6901 -P 30

without pipelining:

redis-benchmark -t set,get -n 1000000 -r 1000000 -p 6901