Skip to content
/ rudis Public

A Redis server implementation in Rust

License

Notifications You must be signed in to change notification settings

AxlLind/rudis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

167 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rudis

Rudis is a Redis server implementation in Rust.

It speaks the same binary protocol as Redis and implements a subset of all Redis commands. This means you can connect to a Rudis server using any available Redis library.

$ cargo run --release  # start the rudis server
$ redis-cli -p 8888    # connect to rudis on port 8888
127.0.0.1:8888> set x 123
OK
127.0.0.1:8888> get x
123

About

A Redis server implementation in Rust

Topics

Resources

License

Stars

Watchers

Forks