Enum WALOperationType
- Namespace
- AiDotNet.RetrievalAugmentedGeneration.Graph
- Assembly
- AiDotNet.dll
Types of operations that can be logged in the WAL.
public enum WALOperationType
Fields
AddEdge = 1Add an edge to the graph.
AddNode = 0Add a node to the graph.
BeginTransaction = 5Begin a transaction.
Checkpoint = 4Checkpoint - all operations up to this point are persisted.
CommitTransaction = 6Commit a transaction.
RemoveEdge = 3Remove an edge from the graph.
RemoveNode = 2Remove a node from the graph.
RollbackTransaction = 7Rollback a transaction.