Tantivy

Build Status Coverage Status License: MIT Join the chat at https://gitter.im/tantivy-search/tantivy

Tantivy is a full text search engine library written in rust.

It is strongly inspired by Lucene's design.

Features

Getting started

Compiling

By default, tantivy uses a git submodule called simdcomp. After cloning the repository, you will need to initialize and update the submodules. The project can then be built using cargo.

git clone git@github.com:tantivy-search/tantivy.git
git submodule init
git submodule update
cargo build

Alternatively, if you are trying to compile tantivy without simd compression, you can disable this functionality. In this case, this submodule is not required and you can compile tantivy by using the --no-default-features flag.

cargo build --no-default-features

Contribute

Send me an email (paul.masurel at gmail.com) if you want to contribute to tantivy.