You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-1Lines changed: 8 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -103,8 +103,15 @@ OK
103
103
```
104
104
105
105
## ReplicatedLogs
106
-
Duva includes two pluggable replicated log implementations:
106
+
Our replication layer ensures strong consistency and reliability in distributed systems by managing logs across both in-memory buffers and persistent storage.
107
+
108
+
Key highlights:
109
+
- Reliable replication: Logs are batched and synchronized efficiently between leader and followers.
110
+
- Consistency guarantees: Even during leader elections or system recovery, committed entries remain safe.
111
+
- Performance-conscious design: In-memory buffering improves throughput while maintaining system durability.
112
+
- This approach strengthens system resilience and ensures that critical operations remain consistent and available, even under failure scenarios.
107
113
114
+
Duva includes two pluggable replicated log implementations:
0 commit comments