Giter VIP home page Giter VIP logo

rust-redis's Introduction

Rust Redis-like Server

This project is a simplified Redis-like server implemented in Rust. It supports basic key-value storage functionalities with optional key expiration and is capable of handling multiple client connections concurrently. This server is built to handle a subset of Redis commands and uses the Redis serialization protocol (RESP) for communication.

Features

  • Basic Redis Commands: Supports PING, ECHO, SET, and GET commands.
  • Concurrency: Uses multithreading to handle multiple client connections simultaneously.
  • Key Expiration: Allows setting expiration time for keys in milliseconds.
  • Error Handling: Gracefully handles errors and client disconnections.

Getting Started

Running the Server

Run the server using Cargo:

cargo run --release

The server will start and listen for connections on 127.0.0.1:6379.

Usage

Connect to the server using a Redis client or any compatible tool. Below are examples using redis-cli:

    redis-cli -p 6379
    127.0.0.1:6379> PING
    PONG
    127.0.0.1:6379> SET mykey myvalue
    OK
    127.0.0.1:6379> GET mykey
    "myvalue"
    127.0.0.1:6379> SET tempkey tempvalue PX 10000
    OK
    127.0.0.1:6379> ECHO "Hello, World!"
    "Hello, World!"

Future Work

  • Replication: leader follower (master-replica) replication

rust-redis's People

Contributors

mohr-cai avatar codecrafters-bot avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.