pub enum FsyncPolicy {
Strict,
Batched,
Relaxed,
}Expand description
When GraphDb calls Fs::sync after a WAL append.
Default is Strict: every log_then_apply_with
fsyncs (single insert_node / set_prop). Ingest and write_batch
emit one WalRecord::Batch and fsync once at that frame (Batched).
Relaxed skips WAL sync; GraphDb::snapshot
is still durable via write_atomic. Crash-recovery DST stays Strict.
Variants§
Strict
Every WAL commit calls fs.sync (today’s behavior).
Batched
Sync only at a Batch frame end. Single-op path stays Strict unless
this policy is set on the database.
Relaxed
Never call fs.sync. GraphDb::snapshot still syncs via write_atomic.
Trait Implementations§
Source§impl Clone for FsyncPolicy
impl Clone for FsyncPolicy
Source§fn clone(&self) -> FsyncPolicy
fn clone(&self) -> FsyncPolicy
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FsyncPolicy
Source§impl Debug for FsyncPolicy
impl Debug for FsyncPolicy
Source§impl Default for FsyncPolicy
impl Default for FsyncPolicy
Source§fn default() -> FsyncPolicy
fn default() -> FsyncPolicy
Returns the “default value” for a type. Read more
impl Eq for FsyncPolicy
Source§impl PartialEq for FsyncPolicy
impl PartialEq for FsyncPolicy
impl StructuralPartialEq for FsyncPolicy
Auto Trait Implementations§
impl Freeze for FsyncPolicy
impl RefUnwindSafe for FsyncPolicy
impl Send for FsyncPolicy
impl Sync for FsyncPolicy
impl Unpin for FsyncPolicy
impl UnsafeUnpin for FsyncPolicy
impl UnwindSafe for FsyncPolicy
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more