{"id":13632525,"url":"https://github.com/zowens/paxos-rs","last_synced_at":"2026-02-09T12:38:06.868Z","repository":{"id":35953235,"uuid":"117448632","full_name":"zowens/paxos-rs","owner":"zowens","description":"Paxos implementation in Rust","archived":false,"fork":false,"pushed_at":"2025-11-23T21:55:33.000Z","size":365,"stargazers_count":78,"open_issues_count":21,"forks_count":9,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-11-23T23:28:58.666Z","etag":null,"topics":["consensus","distributed-systems","paxos","rust"],"latest_commit_sha":null,"homepage":null,"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/zowens.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2018-01-14T16:52:49.000Z","updated_at":"2025-11-23T21:55:29.000Z","dependencies_parsed_at":"2024-03-28T22:22:58.840Z","dependency_job_id":"174a7a44-c0df-4841-b301-f48233ce22f7","html_url":"https://github.com/zowens/paxos-rs","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zowens/paxos-rs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zowens%2Fpaxos-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zowens%2Fpaxos-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zowens%2Fpaxos-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zowens%2Fpaxos-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zowens","download_url":"https://codeload.github.com/zowens/paxos-rs/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zowens%2Fpaxos-rs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29265534,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-09T04:11:57.159Z","status":"ssl_error","status_checked_at":"2026-02-09T04:11:56.117Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["consensus","distributed-systems","paxos","rust"],"created_at":"2024-08-01T22:03:05.802Z","updated_at":"2026-02-09T12:38:06.828Z","avatar_url":"https://github.com/zowens.png","language":"Rust","funding_links":[],"categories":["Rust"],"sub_categories":[],"readme":"# Paxos-rs \n\n[![Travis](https://travis-ci.org/zowens/paxos-rs.svg?branch=master)](https://travis-ci.org/zowens/paxos-rs/)\n\nLibrary encapsulating Multi-Decree Paxos and variants in Rust. The core algorithm is embeddable in other systems that need a replicated state machine.\n\n*Development Status*: Alpha (not for production use yet)\n\nThe library is getting close to a [0.1 release](https://github.com/zowens/paxos-rs/milestone/1).\n\n## Example Key-Value Store\n\nTo try out the algorithm, an [example](examples/http-paxos) implements an HTTP transport for both clients and the replicas.\n\n### Running\n```bash\n$ cargo build --example http-paxos\n$ ./target/debug/examples/http-paxos 0 \u0026\n$ ./target/debug/examples/http-paxos 1 \u0026\n$ ./target/debug/examples/http-paxos 2 \u0026\n```\n\n### Example\n```bash\n# GET the \"foo\" key which does not exist yet\n$ curl localhost:8080/foo -i\nHTTP/1.1 404 Not Found\ncontent-length: 0\ndate: Tue, 09 Jun 2020 19:54:19 GMT\n\n# SET the key to a value by passing the value in the body\n$ curl localhost:8080/foo -d 'hello paxos' -i\nHTTP/1.1 204 No Content\nx-paxos-slot: 3\ncontent-length: 0\ndate: Tue, 09 Jun 2020 19:55:29 GMT\n\n# Now run a GET again on the key to get the value\n$ curl localhost:8080/foo -i\nHTTP/1.1 200 OK\nx-paxos-slot: 4\ncontent-length: 11\ndate: Tue, 09 Jun 2020 19:56:41 GMT\n\nhello paxos\n```\n\n## References\n* [Paxos Variants](http://paxos.systems/variants.html#mencius)\n* [Understanding Paxos](https://understandingpaxos.wordpress.com/)\n* [Paxos Made Moderately Complex](http://paxos.systems/)\n* [Flexible Quorums](https://fpaxos.github.io/)\n* [WPaxos](https://muratbuffalo.blogspot.com/2017/12/wpaxos-wide-area-network-paxos-protocol.html)\n* [PigPaxos](https://arxiv.org/pdf/2003.07760.pdf)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzowens%2Fpaxos-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzowens%2Fpaxos-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzowens%2Fpaxos-rs/lists"}