Enum StorageMode
Specifies the underlying storage mode for a DataSource instance.
public enum StorageMode
Fields
Memory = 0
The data source is stored entirely in memory.
FileReadOnly = 1
The data source is backed by a file opened in read-only mode.
FileReadWrite = 2
The data source is backed by a file opened in read-write mode, allowing modifications to be automatically persisted to the file.
VectorStore = 3
The data source utilizes an external vector store for data storage.