Raft Consensus Algorithm
    Preparing search index...

    Durable Raft metadata payload.

    interface MetaData {
        term: number;
        votedFor: string | null;
    }
    Index

    Properties

    Properties

    term: number

    Current persisted term.

    votedFor: string | null

    Candidate voted for in current term, or null.