Tantivy is a full-text search engine library written in Rust.
It is closer to Apache Lucene than to Elasticsearch or Apache Solr in the sense it is not
an off-the-shelf search engine server, but rather a crate that can be used
to build such a search engine.
Tantivy is, in fact, strongly inspired by Lucene's design.
If you are looking for an alternative to Elasticsearch or Apache Solr, check out Quickwit, our search engine built on top of Tantivy.
Benchmark
The following benchmark breakdowns
performance for different types of queries/collections.
Your mileage WILL vary depending on the nature of queries and their load.
tantivy-cli and its tutorial - tantivy-cli is an actual command-line interface that makes it easy for you to create a search engine,
index documents, and search via the CLI or a small server with a REST API.
It walks you through getting a Wikipedia search engine up and running in a few minutes.
We use the GitHub Pull Request workflow: reference a GitHub ticket and/or include a comprehensive commit message when opening a PR.
Clone and build locally
Tantivy compiles on stable Rust but requires Rust >= 1.27.
To check out and run tests, you can simply run:
git clone https://github.com/quickwit-oss/tantivy.git
cd tantivy
cargo build
Run tests
Some tests will not run with just cargo test because of fail-rs.
To run the tests exhaustively, run ./run-tests.sh.
Debug
You might find it useful to step through the programme with a debugger.
A failing test
Make sure you haven't run cargo clean after the most recent cargo test or cargo build to guarantee that the target/ directory exists. Use this bash script to find the name of the most recent debug build of Tantivy and run it under rust-gdb:
Now that you are in rust-gdb, you can set breakpoints on lines and methods that match your source code and run the debug executable with flags that you normally pass to cargo test like this:
$gdb run --test-threads 1 --test $NAME_OF_TEST
An example
By default, rustc compiles everything in the examples/ directory in debug mode. This makes it easy for you to make examples to reproduce bugs:
rust-gdb target/debug/examples/$EXAMPLE_NAME
$ gdb run
quickwit-oss/tantivy
Tantivy is a full-text search engine library written in Rust.
It is closer to Apache Lucene than to Elasticsearch or Apache Solr in the sense it is not an off-the-shelf search engine server, but rather a crate that can be used to build such a search engine.
Tantivy is, in fact, strongly inspired by Lucene's design.
If you are looking for an alternative to Elasticsearch or Apache Solr, check out Quickwit, our search engine built on top of Tantivy.
Benchmark
The following benchmark breakdowns performance for different types of queries/collections.
Your mileage WILL vary depending on the nature of queries and their load.
Features
(michael AND jackson) OR "king of pop"
)"michael jackson"
)&[u8]
fast fieldsNon-features
Distributed search is out of the scope of Tantivy, but if you are looking for this feature, check out Quickwit.
Getting started
Tantivy works on stable Rust (>= 1.27) and supports Linux, macOS, and Windows.
tantivy-cli
is an actual command-line interface that makes it easy for you to create a search engine, index documents, and search via the CLI or a small server with a REST API. It walks you through getting a Wikipedia search engine up and running in a few minutes.How can I support this project?
There are many ways to support this project.
Contributing code
We use the GitHub Pull Request workflow: reference a GitHub ticket and/or include a comprehensive commit message when opening a PR.
Clone and build locally
Tantivy compiles on stable Rust but requires
Rust >= 1.27
. To check out and run tests, you can simply run:git clone https://github.com/quickwit-oss/tantivy.git cd tantivy cargo build
Run tests
Some tests will not run with just
cargo test
because offail-rs
. To run the tests exhaustively, run./run-tests.sh
.Debug
You might find it useful to step through the programme with a debugger.
A failing test
Make sure you haven't run
cargo clean
after the most recentcargo test
orcargo build
to guarantee that thetarget/
directory exists. Use this bash script to find the name of the most recent debug build of Tantivy and run it underrust-gdb
:Now that you are in
rust-gdb
, you can set breakpoints on lines and methods that match your source code and run the debug executable with flags that you normally pass tocargo test
like this:An example
By default,
rustc
compiles everything in theexamples/
directory in debug mode. This makes it easy for you to make examples to reproduce bugs:rust-gdb target/debug/examples/$EXAMPLE_NAME $ gdb run
Companies Using Tantivy
FAQ
Can I use Tantivy in other languages?
You can also find other bindings on GitHub but they may be less maintained.
What are some examples of Tantivy use?
On average, how much faster is Tantivy compared to Lucene?