Official RaftLogStore implementation #345
Replies: 3 comments
-
Or, do we develop another database which focuses on being a Raft log. Raft log rarely needs random write or random read: the write and read happens sequentially. Under this special condition, we can create more efficient database for sure. |
Beta Was this translation helpful? Give feedback.
-
redb doesn't have namespace so it doesn't allow us to separate log for each lane-id. sled has |
Beta Was this translation helpful? Give feedback.
-
or sqlite perhaps |
Beta Was this translation helpful? Give feedback.
-
Implementing
RaftLogStore
needs some work. How about providing an official referential implementation?In that case, what is the suitable backend? sled? redb? lmdb? or rocksdb?
Beta Was this translation helpful? Give feedback.
All reactions