A server that processes basic Redis Serialization Protocol (RESP) commands, storing received data in Deno KV.
PING [message]INFOCOMMAND DOCS [command]GET keySET key valueINCR keyINCRBY key incrementDECR keyDECRBY key decrementMGET key [key ...]MSET key value [key value ...]
Just run deno task dev, and use the redis-cli in another terminal to connect.
➜ ~ redis-cli
127.0.0.1:6379> SET hello world
OK
127.0.0.1:6379> GET hello
"world"
127.0.0.1:6379>
Run deno task test to run the tests
