Enum PersistentState.WriteMode
Describes how the log interacts with underlying storage device.
Namespace: DotNext.Net.Cluster.Consensus.Raft
Assembly: DotNext.Net.Cluster.dll
Syntax
public enum PersistentState.WriteMode
Fields
| Name | Description |
|---|---|
| AutoFlush | Flushes data to disk only if the internal buffer overflows. |
| NoFlush | Delegates intermediate buffer flush to operating system. |
| WriteThrough | Bypass intermediate buffers for all disk writes. |