Expand description
SQLite-backed persistence: connection, catalog, document store, inverted index, vector index.
Re-exports§
pub use crate::catalog::CatalogFacade;pub use crate::catalog::CatalogIndexRow;pub use crate::catalog::ColumnStatsInput;pub use crate::catalog::ColumnStatsRow;pub use crate::catalog::EdgeRow;pub use crate::catalog::ForeignTableRow;pub use crate::catalog::TableSchema;pub use crate::catalog::VectorFieldSchema;pub use btree_index::SQLiteBTreeIndexStore;pub use catalog::Catalog;pub use catalog::CURRENT_SCHEMA_VERSION;pub use compressed_vfs::read_authenticated_anchor;pub use compressed_vfs::SQLiteCompressedContainerAnchor;pub use compressed_vfs::SQLiteCompressionCodec;pub use compressed_vfs::SQLiteCompressionOptions;pub use connection::ManagedConnection;pub use connection::Result;pub use connection::SQLiteError;pub use detect::detect_database_file_format;pub use detect::DatabaseFileFormat;pub use document_store::SQLiteDocumentStore;pub use inverted_index::SQLiteInvertedIndex;pub use vector_index::SQLiteHNSWIndex;pub use vector_index::SQLiteIVFIndex;pub use vector_index::SQLiteVectorIndex;
Modules§
- btree_
index - Persistent backing for logical
btreevalue indexes. - catalog
- Catalog: schema versioning, migrations, and persisted table metadata.
- compressed_
vfs - Schema-neutral compressed
SQLiteVFS. - connection
- Pooled
SQLiteconnections with explicit session and transaction affinity. - detect
- On-disk database format detection.
- document_
store - SQLite-backed
DocumentStore. - inverted_
index - SQLite-backed inverted index.
- vector_
index - SQLite-backed exact and IVF vector indexes.