Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
tarun388 committed Mar 18, 2024
1 parent 9e1d1a7 commit ba0b1a5
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
# Jredis
Java implementation of redis.
Java implementation of redis. Started this project after reading through the challenge [Build Your Own Redis Server](https://codingchallenges.fyi/challenges/challenge-redis)

## RESP
Jredis supports RESP protocol to communicate to client over TCP connection.
Server expects per connection an array of bulk strings.
## RESP support
Jredis supports very basic RESP protocol to communicate with client over TCP connection.
Server expects expects an array of RESP bulk strings per request.

## Run
From root directory of the repo, execute `mvn clean install`
After successful build, you can start the Jredis server on localhost port 6379
> java -jar target/jredis-1.0-SNAPSHOT.jar
## How to build
`mvn clean install`

## Future ToDo
Extend support for multiple array of bulk strings per connection.
## How to Run
Start Jredis server on localhost port 6379
> java -jar target/jredis-1.0-SNAPSHOT.jar

0 comments on commit ba0b1a5

Please sign in to comment.