paxos-rs icon indicating copy to clipboard operation
paxos-rs copied to clipboard

Persistent Storage

Open zowens opened this issue 7 years ago • 2 comments

The Paxos state must be applied to persistent storage. The easiest to plug in may be RocksDB.

zowens avatar Jan 14 '18 17:01 zowens

Does this persistent storage is used to store each (Instant, Command)? Is it possible to create a Trait for that? In case we don't use RocksDB, but we already use another kv-store.

qdequele avatar May 18 '20 08:05 qdequele

There will be a Storage trait that could be swapped out for any implementation. For 0.1 it'll be a synchronous API. I'll post a trait sketch here before I start implementing.

zowens avatar Jul 06 '20 20:07 zowens