Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Doc: add example raft-kv #156

Merged
merged 3 commits into from
Feb 5, 2022
Merged

Commits on Feb 3, 2022

  1. Doc: add example raft-kv

    Add an example of distributed kv store implementation: `./example-raft-kv`.
    
    Includes:
    - An in-memory `RaftStorage` implementation [store](./store).
    
    - A server is based on [actix-web](https://docs.rs/actix-web/4.0.0-rc.2).
      Includes:
      - raft-internal network APIs for replication and voting.
      - Admin APIs to add nodes, change-membership etc.
      - Application APIs to write a value by key or read a value by key.
    
    - Client and `RaftNetwork`([network](./network)) are built upon [reqwest](https://docs.rs/reqwest).
    drmingdrmer committed Feb 3, 2022
    Configuration menu
    Copy the full SHA
    0721656 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    42748fe View commit details
    Browse the repository at this point in the history
  3. Fixup: Improve example

    ppamorim authored and drmingdrmer committed Feb 3, 2022
    Configuration menu
    Copy the full SHA
    17d16a1 View commit details
    Browse the repository at this point in the history