sql5 4.1.0

SQLite compatible database with CJK FTS5 full-text search and vector similarity
Documentation
1
2
3
4
5
6
7
8
9
10
//! sql5 - SQLite compatible database with CJK FTS5 full-text search

pub mod btree;
pub mod fts;
pub mod pager;

pub use btree::tree::BPlusTree;
pub use btree::node::Key;
pub use fts::FtsTable;
pub use pager::storage::{DiskStorage, MemoryStorage, Storage};