Table of Contents

Enum WALOperationType

Namespace
AiDotNet.RetrievalAugmentedGeneration.Graph
Assembly
AiDotNet.dll

Types of operations that can be logged in the WAL.

public enum WALOperationType

Fields

AddEdge = 1

Add an edge to the graph.

AddNode = 0

Add a node to the graph.

BeginTransaction = 5

Begin a transaction.

Checkpoint = 4

Checkpoint - all operations up to this point are persisted.

CommitTransaction = 6

Commit a transaction.

RemoveEdge = 3

Remove an edge from the graph.

RemoveNode = 2

Remove a node from the graph.

RollbackTransaction = 7

Rollback a transaction.