Securedis is a (mini) redis server that will provide a simple way to encrypt and decrypt your data.
🚧 Currently, in development 🚧
- PING
- ECHO
- SET (with and without
PX
option) - GET
- LOAD (from a CSV file)
- SAVE (to a CSV file)
- KEYS
- DEL
- Strings
- Integers
- Lists
- Make sure you have
rust
installed (if not https://www.rust-lang.org/tools/install) - Clone the repository
- Launch the server with the script
./start.sh
- The server will start on your localhost
6379
port by default. - You can connect to the server by using the Redis CLI (https://redis.io/topics/rediscli)
Examples :
$ redis-cli -p 6379 ping
PONG
$ redis-cli -p 6379 set mykey myvalue
OK
$ redis-cli -p 6379 get mykey
"myvalue"
- Fork the repository
- Create a new branch
- Make your changes
- Create a pull request
- Wait for my review
- Merge your changes
- Celebrate 🥳
- Réda MAIZATE