sider

Crates.iosider
lib.rssider
version0.1.4
sourcesrc
created_at2023-04-13 22:39:10.947419
updated_at2023-04-19 23:29:01.740987
descriptionA Multithreaded Redis clone written from scratch in Rust.
homepage
repository
max_upload_size
id838765
size21,946
Adham Salama (adhamsalama)

documentation

README

Sider

A Multithreaded Redis clone written from scratch in Rust.

Build

Sider doesn't have any external dependencies. You can either run it directly:

cargo run --release

Or you can build it and use -p to specify the port and -t to specify a conenction timeout in milliseconds.

cargo build -- release
./target/debug/sider -p 3000 -t 10

Install

Sider is published on crates.io, you can install it using cargo.

cargo install sider

Implemented commands (so far):

  • SET
  • GET
  • DEL
  • RPUSH
  • LRANGE
  • INCR
  • INCRBY
  • DECR
  • DECRBY
  • EXPIRE
  • PUBLISH
  • SUBSCRIBE

Benchmarks

On my machine which has an i5-9300H Intel CPU.

redis-benchmark -n 100000 -c 100 -t set,get

SET: 79365.08 requests per second
GET: 82034.45 requests per second
redis-benchmark -n 500000 -c 1000 -t set,get

SET: 56433.41 requests per second
GET: 57077.62 requests per second

Performance may vary depending on the machine you run the benchmarks on.

Commit count: 0

cargo fmt