This is the redis implemented by Java.
As of now, only the server can be used normally. So there is the way to run the server.
git clone https://github.com/Math312/Java-Redis.git
cd Java-Redis
mvn package install
cd server/target
java -jar server-1.0-SNAPSHOT.jar
You can use the redis-cli
provided by redis
to connecting the port 6379.
- GET
- SET
- APPEND
- EXPIRE
- EXISTS
- TTL
- PING
- DEL
- KEYS
- INCR
- DECR
- SETNX
I will support all commands provided by redis.