fr-search 0.1.0

A high-performance, ultra-optimized search engine and document tagging system built on Tantivy and Meta's FastText model.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod fst;
pub mod search;
pub mod model;

pub mod prelude {
  pub use crate::fst::{
    Fst
  };
  pub use crate::search::{
    Fts,
    FtsConfig,
    Document,
  };
  pub use crate::model::{
    Tagger
  };
}