Skip to content

Implementation of my own redis as part of CodeCrafters challenge.

Notifications You must be signed in to change notification settings

BrianUribe6/redis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

progress-banner

This is my solution to "Build Your Own Redis" Challenge.

It supports the following commands:

  • PING
  • SET
  • GET
  • ECHO
  • PSYNC *
  • INFO*

* partial support

You can start a local server by running

./spawn_redis_server.sh

This will start a redis server on port 6379 by default.

You can now spawn another replica and have it synchronize with master by running

./spawn_redis_server.sh --port 3000 --replicaof localhost 6379

Check if the server is running correctly by running the original redis-cli

$ redis-cli ping
PONG

About

Implementation of my own redis as part of CodeCrafters challenge.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published