https://github.com/qiaopengjun5162/rust-redis-server
A simple redis
https://github.com/qiaopengjun5162/rust-redis-server
Last synced: about 2 months ago
JSON representation
A simple redis
- Host: GitHub
- URL: https://github.com/qiaopengjun5162/rust-redis-server
- Owner: qiaopengjun5162
- License: mit
- Created: 2024-12-20T08:04:07.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-01-04T12:39:55.000Z (5 months ago)
- Last Synced: 2025-01-04T12:41:57.787Z (5 months ago)
- Language: Rust
- Size: 32.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Rust Redis Server
Rust Redis Server is a simple Redis server implemented in Rust.
It is a work in progress and is not yet feature complete.## Features
- Simple command handling
- Basic data types (strings, lists, sets, hashes)## Installation
To install the server, clone the repository and run:
```bash
cargo build --release
```## Usage
To run the server, use the following command:
```bash
cargo run --release
```The server will start on port 6379 by default. You can change the port by setting the `REDIS_PORT` environment variable.
## Contributing
Contributions are welcome! Please submit pull requests with any changes you make.
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.