{"id":20558516,"url":"https://github.com/ravikisha/redis-clone","last_synced_at":"2025-07-30T08:08:26.975Z","repository":{"id":227009015,"uuid":"770179048","full_name":"Ravikisha/Redis-Clone","owner":"Ravikisha","description":"A Redis clone database implemented in both Go and Rust. This project aims to replicate the core functionalities of Redis, providing a simple and efficient in-memory data structure store.","archived":false,"fork":false,"pushed_at":"2024-11-04T13:44:14.000Z","size":204,"stargazers_count":16,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-07T18:22:17.971Z","etag":null,"topics":["database","golang","redis","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Ravikisha.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-03-11T04:39:43.000Z","updated_at":"2025-02-23T11:27:46.000Z","dependencies_parsed_at":"2024-11-04T14:20:44.969Z","dependency_job_id":"b1c91998-5da5-4c82-8aad-0f3d012f9ca8","html_url":"https://github.com/Ravikisha/Redis-Clone","commit_stats":null,"previous_names":["ravikisha/redis-clone"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Ravikisha/Redis-Clone","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ravikisha%2FRedis-Clone","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ravikisha%2FRedis-Clone/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ravikisha%2FRedis-Clone/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ravikisha%2FRedis-Clone/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Ravikisha","download_url":"https://codeload.github.com/Ravikisha/Redis-Clone/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ravikisha%2FRedis-Clone/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267834802,"owners_count":24151642,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-30T02:00:09.044Z","response_time":70,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["database","golang","redis","rust"],"created_at":"2024-11-16T03:44:26.011Z","updated_at":"2025-07-30T08:08:26.946Z","avatar_url":"https://github.com/Ravikisha.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Redis Clone\n\n\u003cp float=\"left\"\u003e\n\u003cimg src=\"https://img.shields.io/badge/Rust-000000?style=for-the-badge\u0026logo=rust\u0026logoColor=white\" /\u003e\n\u003cimg src=\"https://img.shields.io/badge/Go-00ADD8?style=for-the-badge\u0026logo=go\u0026logoColor=white\" /\u003e\n\u003cimg src=\"https://img.shields.io/badge/Redis-DC382D?style=for-the-badge\u0026logo=redis\u0026logoColor=white\" /\u003e\n\u003cimg src=\"https://img.shields.io/badge/License-MIT-yellow.svg?style=for-the-badge\" /\u003e\n\u003c/p\u003e\n\nA Redis clone database implemented in both **Go** and **Rust**. This project aims to replicate the core functionalities of Redis, providing a simple and efficient in-memory data structure store.\n\n\u003cp float=\"left\"\u003e\n\u003cimg src=\"./docs/gobanner.jpg\" width=\"400\" height=\"200\" /\u003e\n\u003cimg src=\"./docs/rustbanner.jpg\" width=\"400\" height=\"200\" /\u003e\n\u003c/p\u003e\n\n## Features\n\n- **Key-Value Storage**: Store data as key-value pairs.\n- **Data Types**: Support for various data types such as strings, lists, sets, and hashes.\n- **Persistence**: Basic data persistence with snapshotting (RDB).\n- **Simple Command Interface**: A command-line interface to interact with the database.\n- **High Performance**: Designed for low latency and high throughput.\n\n![Diagram](./docs/diagram.png)\n\n## Technologies\n\n- **Go**: The Go implementation is designed for performance and ease of use, utilizing goroutines for concurrent processing.\n- **Rust**: The Rust implementation emphasizes safety and speed, leveraging the language's ownership model.\n\n## Getting Started\n\n### Prerequisites\n\n- [Go](https://golang.org/dl/) (for the Go implementation)\n- [Rust](https://www.rust-lang.org/tools/install) (for the Rust implementation)\n\n### Installation\n\nClone the repository:\n\n```bash\ngit clone https://github.com/Ravikisha/Redis-Clone\ncd Redis-Clone\n```\n\n### Running the Go Implementation\n\nTo run the Go implementation, navigate to the `go` directory:\n\n```bash\ncd go\ngo run server.go\n```\n\n### Running the Rust Implementation\n\nTo run the Rust implementation, navigate to the `rust` directory:\n\n```bash\ncd rust\ncargo run\n```\n\n### Command-Line Interface\n\nYou can interact with the database through a simple command-line interface. The following commands are supported:\n\n- `SET key value`: Set a key to hold the string value.\n- `GET key`: Get the value of the key.\n- `DEL key`: Delete a key.\n- `EXISTS key`: Check if a key exists.\n\n## Contributing\n\nContributions are welcome! Please read the [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduct, and the process for submitting pull requests.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Acknowledgments\n\n- [Redis](https://redis.io/) for the inspiration behind this project.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fravikisha%2Fredis-clone","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fravikisha%2Fredis-clone","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fravikisha%2Fredis-clone/lists"}