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
According to our tests, ZoneTree is stable and fast even with big data.
64
-
Tested up to 200M records in desktop computers till now.
64
+
Tested up to 1 billion records in desktop computers till now.
65
65
66
66
### ZoneTree offers 4 WAL modes to let you make a flexible tradeoff.
67
67
68
68
* The sync mode provides maximum durability but slower write speed.
69
-
In case of a crash/power cut, the sync mode ensures that the inserted data is not lost. RocksDb does not have sync WAL mode. It has a WAL mode similar to the sync-compressed mode. ( reference: [rocksdb.org](http://rocksdb.org/blog/2017/08/25/flushwal.html) )
69
+
In case of a crash/power cut, the sync mode ensures that the inserted data is not lost.
70
70
71
71
* The sync-compressed mode provides faster write speed but less durability.
72
72
Compression requires chunks to be filled before appending them into the WAL file.
According to our tests, ZoneTree is stable and fast even with big data.
64
-
Tested up to 200M records in desktop computers till now.
64
+
Tested up to 1 billion records in desktop computers till now.
65
65
66
66
### ZoneTree offers 4 WAL modes to let you make a flexible tradeoff.
67
67
68
68
* The sync mode provides maximum durability but slower write speed.
69
-
In case of a crash/power cut, the sync mode ensures that the inserted data is not lost. RocksDb does not have sync WAL mode. It has a WAL mode similar to the sync-compressed mode. ( reference: [rocksdb.org](http://rocksdb.org/blog/2017/08/25/flushwal.html) )
69
+
In case of a crash/power cut, the sync mode ensures that the inserted data is not lost.
70
70
71
71
* The sync-compressed mode provides faster write speed but less durability.
72
72
Compression requires chunks to be filled before appending them into the WAL file.
Copy file name to clipboardExpand all lines: src/ZoneTree/docs/ZoneTree/guide/write-ahead-log.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
### ZoneTree offers 4 WAL modes to let you make a flexible tradeoff.
2
2
3
3
* The sync mode provides maximum durability but slower write speed.
4
-
In case of a crash/power cut, the sync mode ensures that the inserted data is not lost. RocksDb does not have sync WAL mode. It has a WAL mode similar to the sync-compressed mode. ( reference: [rocksdb.org](http://rocksdb.org/blog/2017/08/25/flushwal.html) )
4
+
In case of a crash/power cut, the sync mode ensures that the inserted data is not lost.
5
5
6
6
* The sync-compressed mode provides faster write speed but less durability.
7
7
Compression requires chunks to be filled before appending them into the WAL file.
0 commit comments