infino 0.1.0

A fast retrieval engine that stores data on object storage and runs SQL, full-text search, and vector search over it from a single system — search-on-Parquet.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright The Infino Authors

//! Full-text search subsystem — the BM25 + posting list + FST term
//! dictionary stack lives here.

pub mod bm25;
pub mod builder;
pub mod dict;
pub(crate) mod fst_value;
pub mod posting;
pub mod reader;
pub mod tokenize;