RediServe is an innovative, open-source tool providing HTTP API access for Redis operations. This Rust-based project bridges the gap between Redis and HTTP, enabling users to interact with Redis using straightforward HTTP requests. One of its significant advantages is full compatibility with the Upstash SDK, making it a valuable tool for developers familiar with Upstash's Redis REST API.
RediServe is currently in the early stages of development. It is not yet ready for production use. We are actively working on the project and will be releasing a stable version soon.
Development environment setup
- Clone the repository
git clone https://github.com/karan-jadhav/rediserve.git
- Install dependencies
cargo build
- Run the server
cargo run -- -s
Todo
- REST API's for Redis operations
- Authentication API
- Base64 encoding for response
- Support for Redis Cluster
- Configure API testing with GitHub Actions
We welcome contributions from the community. Before contributing, please read our branch naming conventions to ensure a smooth workflow for feature development, bug fixes, and releases. To contribute
- Fork the Project
- Create your Feature Branch (git checkout -b feature/YourFeature)
- Commit your Changes (git commit -m 'Add some YourFeature')
- Push to the Branch (git push origin feature/YourFeature)
- Open a Pull Request
RediServe is licensed under the Apache License, Version 2.0.
Inspiration: A heartfelt thank you to the Upstash Redis REST API, whose implementation has been a significant source of inspiration for RediServe.
axum: For its efficient and robust web application framework capabilities in Rust.
deadpool: For enhancing RediServe’s performance with effective Redis connection pooling.
redis-rs: Providing the comprehensive Rust client for Redis, integral to RediServe's functionality.
tokio: For its support in asynchronous Rust programming, enabling efficient scaling and performance.
As the current sole developer, this project represents a journey of learning and growth. The experiences and challenges faced have been invaluable for personal and professional development.
The future contributions from the community and continued support from the open-source ecosystem are eagerly anticipated as RediServe continues to evolve.