nodedb-fts 0.2.0

Shared full-text search engine for NodeDB — inverted index, BM25 scoring, analyzers, fuzzy matching
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: Apache-2.0

pub mod analyzer_config;
pub mod error;
pub mod fieldnorm;
pub mod stats;
pub mod synonym_groups;
pub mod writer;

pub use error::{FtsIndexError, MAX_INDEXABLE_SURROGATE};
pub use synonym_groups::SynonymGroupRecord;
pub use writer::FtsIndex;